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

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

  3. WinPcap: pcap.h File Reference

    Flushes the output buffer to the ``savefile,'' so that any packets written with pcap_dump () but not yet written to the ``savefile'' will be written. -1 is returned on error, 0 on success.

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

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

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

  9. PCAP Next Generation Dump File Format

    Sep 2, 2004 · The recommended file name extension for the "PCAP Next Generation Dump File Format" specified in this document is ".pcapng". At least in the "Windows world", files are …

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