About 50 results
Open links in new tab
  1. 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 …

  2. 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.

  3. 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 …

  4. 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 …

  5. Obtaining the device list - WinPcap

    Both libpcap and WinPcap provide the pcap_findalldevs_ex () function for this purpose: this function returns a linked list of pcap_if structures, each of which contains comprehensive information about …

  6. 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 …

  7. 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.

  8. Using WinPcap in your programs

    Include the file pcap.h at the beginning of every source file that uses the functions exported by library. If your program uses Win32 specific functions of WinPcap, remember to include WPCAP among the …

  9. WinPcap: pcap.h File Reference

    pcap.h File Reference Go to the source code of this file.

  10. Handling offline dump files - WinPcap

    The file is opened with pcap_open_offline (), then the usual pcap_loop () is used to sequence through the packets. As you can see, reading packets from an offline capture is nearly identical to receiving …