* A ncurses user interface.
* Network statistics to view the amount of packets and data in many
different protocols, interfaces and hosts.
* View what active TCP connections are on the network.
* View UDP packets.
* View and log ICMP packets.
* View and log the 48bit arp protocol.
And also view ...
This article describes a sniffer for Windows. WinSniff is an application for capturing packets on the network. It displays all the packets that are transmitted on the local network and gives detailed information about each header in the packet. In order to keep it simple, I am not dealing with appli ...
/*
This IPv4 example listens for incoming packets and automatically adds destinations
for new sources.
这个例子主要是让大家了解下面3个函数的用法。
void OnNewSource(RTPSourceData *dat)
void OnBYEPacket(RTPSourceData *dat)
void OnRemoveSource(RTPSourceData *dat)
具体内容看我的测试文档吧。
例子 ...
In this article, I will explain how to create UDP packets and then send them to a remote server through the Internet using WinPCap for Windows. The code has been tested to work with Windows XP SP2 and Vista SP1 on Linksys routers, and on Toshiba modems connected directly to the Internet. Please note ...