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 …

  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 …

  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 …

  4. WinPcap: pcap.h File Reference

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

  5. WinPcap: pcap_if Struct Reference

    PCAP_IF_ interface flags. Currently the only possible flag is PCAP_IF_LOOPBACK, that is set if the interface is a loopback interface. Definition at line 153 of file incs/pcap.h.

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

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

  8. WinPcap · Documentation

    Manuals The WinPcap manual and tutorial: inside this manual you will find the documentation of the WinPcap API, a tutorial that will explain how to use the WinPcap functions with several …

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

  10. Opening an adapter and capturing the packets - WinPcap

    In this lesson we'll write a program that prints some information about each packet flowing through the adapter. The function that opens a capture device is pcap_open (). The parameters, …