Magenta Systems Internet Packet Monitoring Components are a set of Delphi components designed to capture and monitor internet packets using either raw sockets or the WinPcap device driver. Hardware permitting, ethernet packets may be captured and interpreted, and statistics maintained about the traffic. Uses of packet monitoring include totalling internet traffic by IP address and service, monitoring external or internal IP addresses and services accessed, network diagnostics, and many other applications. The component includes two demonstration applications, one that displays raw packets, the other that totals internet traffic. The components include various filters to reduce the number of packets that need to be processed, by allowing specific IP addresses to be ignored, LAN mask to ignore local traffic, and ignore non-IP traffic such as ARP.
標簽: Components Monitoring components Internet
上傳時間: 2015-10-30
上傳用戶:水中浮云
自適應算術編碼 C語言This package was adapted from the program in "Arithmetic Coding for Data Compression", by Ian H. Witten
標簽: Compression Arithmetic package adapted
上傳時間: 2013-12-06
上傳用戶:ryb
php開發(fā)的行業(yè)搜索系統(tǒng)!!! 2. 安裝 ------------ a. 解壓程序rar文件,用二進制方式上傳到你的網(wǎng)站的根目錄或某一目錄下 注意:一定要將ftp上傳工具設置為二進制方式,再上傳程序文件 b. unix或linux服務器下, 將以下文件屬性改為:666 (或777) - function/base_info.php - function/emphasis_info.php - function/admin_pass_info.php - function/search_info.php - function/userfield_info.php - template/default/目錄下的所有html文件 c. unix或linux服務器下, 將upfile/目錄屬性改為:777 d. 建立一個mysql數(shù)據(jù)庫,并記下用戶名和密碼,以便安裝時使用 e. 進入安裝目錄http://www.your_website.com/install/, 自動運行安裝程序 f. 安裝完成后,要求刪除安裝目錄install/及其下文件 g. 后臺管理目錄http://www.your_website.com/adiministrator/ h. 可修改adiministrator/目錄為你希望的獨特的名字
上傳時間: 2014-11-29
上傳用戶:小草123
LCD-7279的經(jīng)過調試多次已經(jīng)能夠實現(xiàn)在指定的位置顯示特定的數(shù)據(jù)。 程序lcd1.c實現(xiàn)基本的功能,即:鍵盤輸入0、1、2、3、4、5、6、7、8、9、a\b\c\d\e\f 在液晶的指定位置顯示實現(xiàn)滿屏或半屏顯示點陣和字符,調入一幅圖畫的代碼進行顯示;
上傳時間: 2014-01-14
上傳用戶:hgy9473
本文件是I2C總線讀寫測試程序;將跳線器JP6短接,使用外部22.1184MHz晶振. 功能:定義 0 ~ 9 鍵為數(shù)字鍵, A ~ F 為功能鍵。按 A 鍵后,可按0 ~ 9 數(shù)字鍵, 從零地址開始存儲該鍵值,并送LED數(shù)碼管上顯示該鍵值。按 B 鍵后,從零地 址開始讀取數(shù)據(jù)值,并送LED數(shù)碼管上顯示。讀取速度每秒一次。按 C 鍵后, 停止任何操作。
上傳時間: 2013-12-21
上傳用戶:guanliya
函數(shù)名稱:CRC-16 Process 函數(shù)原型:INT16U make_crc16(INT8U *msgaddr,INT8U datalen) 函數(shù)功能:進行CRC校驗和產生CRC代碼.這個函數(shù)只影響全局變量crc16. 校驗字放在字符串最后,低8位在前高8位在后. msgaddr : 進行CRC16校驗的據(jù)塊的首地址 datalen : 進行CRC16校驗的據(jù)塊的個數(shù) CRC-ITU的計算算法如下: a.寄存器組初始化為全"1"(0xFFFF)。 b.寄存器組向右移動一個字節(jié)。 c.剛移出的那個字節(jié)與數(shù)據(jù)字節(jié)進行異或運算,得出一個指向值表的索引。 d.索引所指的表值與寄存器組做異或運算。 f.數(shù)據(jù)指針加1,如果數(shù)據(jù)沒有全部處理完,則重復步驟b。 g.寄存器組取反,得到CRC,附加在數(shù)據(jù)之后(這一步可省略)。
上傳時間: 2015-12-21
上傳用戶:llandlu
This a calculator simulation program written in Labview. It is based on event structure introduced by Labviw 8.0 or later editions.
標簽: calculator simulation introduced structure
上傳時間: 2015-12-27
上傳用戶:123456wh
This Home Security hardware and software. The CPU is MCS-51 series. The source code is developed by C language.
標簽: The developed Security hardware
上傳時間: 2014-12-03
上傳用戶:heart520beat
This file describes the settings to be used by the documentation system doxygen (www.doxygen.org) for a project
標簽: doxygen documentation describes the
上傳時間: 2014-01-24
上傳用戶:ddddddos
一個能夠分析三種整數(shù)、標識符、主要運算符和主要關鍵字的詞法分析程序。 ㈠、基本要求: 標識符 <字母>(<字母>|<數(shù)字字符>)* 十進制整數(shù) 0 | (1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)* 八進制整數(shù) 0(1|2|3|4|5|6|7)(0|1|2|3|4|5|6|7)* 十六進制整數(shù) 0x(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)* 運算符和分隔符 + - * / > < = ( ) ; 關鍵字 if then else while do ㈡、附加要求: 標識符 <字母>(<字母>|<數(shù)字字符>)*(ε|_|.)(<字母>|<數(shù)字字符>)* 十進制整數(shù) (0|1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*(ε|.)(0|1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)* 八進制整數(shù) 0(1|2|3|4|5|6|7)(0|1|2|3|4|5|6|7)* (ε|.)(0|1|2|3|4|5|6|7)(0|1|2|3|4|5|6|7)* 十六進制整數(shù) 0x(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)* (ε|.) (0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)*
上傳時間: 2016-03-03
上傳用戶:zhengjian