
WinPcap - Home
For many years, WinPcap has been recognized as the industry-standard tool for link-layer network access in Windows environments, allowing applications to capture and transmit network packets …
WinPcap Documentation
Introduction This Manual describes the programming interface and the source code of WinPcap. It provides detailed descriptions of the functions and structures exported to programmers, along with …
WinPcap: pcap.h File Reference
pcap.h File Reference Go to the source code of this file.
Obtaining advanced information about installed devices - WinPcap
Additionally, pcap_findalldevs_ex () can also return remote adapters and a list of pcap files that are located in a given local folder. The following sample provides an ifprint () function that prints the …
Interpreting the packets - WinPcap
For simplicity and before starting the capture, we check the MAC layer with pcap_datalink () to make sure that we are dealing with an Ethernet network. This way we can be sure that the MAC header is …
Filtering the traffic - WinPcap
The functions used to filter packets are pcap_compile () and pcap_setfilter (). pcap_compile () takes a string containing a high-level Boolean (filter) expression and produces a low-level byte code that can …
Sending Packets - WinPcap
While pcap_sendpacket () offers a simple and immediate way to send a single packet, send queues provides an advanced, powerful and optimized mechanism to send a collection of packets.
WinPcap
Introduction This Manual describes the programming interface and the source code of WinPcap. It provides detailed descriptions of the functions and structures exported to programmers, along with …
WinPcap · Links
Pcap.Net http://pcapdotnet.codeplex.com/ PerformaSure http://www.sitraka.com/performasure/ PingPlotter http://www.pingplotter.com/ PromiScan …
Capturing the packets without the callback - WinPcap
The parameters of this function are the same as a capture callback -- it takes an adapter descriptor and a couple of pointers that will be initialized and returned to the user (one to a pcap_pkthdr structure …