
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 …
PCAP Next Generation Dump File Format
Sep 2, 2004 · PCAP Next Generation Dump File Format PCAP-DumpFileFormat Status of this Memo This document is an Internet-Draft and is in full conformance with all provisions of Section 10 of RFC …
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 …
Exported functions - WinPcap
When pcap_dispatch () or pcap_loop () are called by the user, the packets are passed to the application by means of this callback. user is a user-defined parameter that contains the state of the capture …
WinPcap · Download
Mar 28, 2021 · WinPcap Has Ceased Development. We recommend Npcap. The WinPcap project has ceased development and WinPcap and WinDump are no longer maintained. WE RECOMMEND …
WinPcap: pcap.h File Reference
pcap.h File Reference Go to the source code of this file.
WinPcap · Frequently Asked Questions
Oct 19, 2009 · The problem is due to the fact that the standard WinPcap include file "pcap.h" contains only a forward declaration of "struct pcap", but not the actual definition of it.
Sending Packets - WinPcap
Sending a single packet with pcap_sendpacket () The simplest way to send a packet is shown in the following code snippet. After opening an adapter, pcap_sendpacket () is called to send a hand …
Filtering expression syntax - WinPcap
A filter is an ASCII string containing a filtering expression. pcap_compile () takes the expression and translates it in a program for the kernel-level packet filter. The expression selects which packets will …
Obtaining the device list - WinPcap
Typically, the first thing that a WinPcap-based application does is get a list of attached network adapters. Both libpcap and WinPcap provide the pcap_findalldevs_ex () function for this purpose: this function …