Top "Libpcap" questions

Libpcap, a portable C/C++ library for network traffic capture.

time difference between two packets in wireshark

I want to calculate the time difference between the time from sending the packet, to getting its ACK back. I …

wireshark pcap libpcap
jNetPcap vs Jpcap

wondering any of you can give me a bit of comments + insights please. In term of performance, which one should …

java winpcap pcap libpcap
help installing libpcap on cygwin

i was trying to install libpcap under cygwin on windows 7 but i had this error: $ ./configure . . . . . configure: error: see the …

cygwin libpcap
ctypes and passing a by reference to a function

I'm trying to use libpcap in python3 using ctypes. given the following function in C pcap_lookupnet(dev, &net, &…

python ctypes libpcap
Capturing performance with pcap vs raw socket

When capturing network traffic for debugging, there seem to be two common approaches: Use a raw socket. Use libpcap. Performance-wise, …

linux libpcap raw-sockets
How to install Python libpcap module on Mac OS X

I started to work on a python sniffer project. I want to use the pcap module but my computer always …

python macos pcap libpcap sniffer
How can I parse an ethernet packet using libpcap?

I'm using libpcap in C++ for reading packets from pcap files, e.g.: rc = pcap_next_ex((pcap_t*)handle, &…

c++ parsing packet libpcap
pcap_open_live not found in -lpcap

I am trying to build reaver on Ubuntu 12.04 32bit. I have already built and installed libpcap. Running ./configure, I get …

linux ubuntu libpcap
Parsing WiFi Packets (libpcap)

I've been working on a way to have an OpenWRT router log WiFi probe requests to a MySQL db (it …

c parsing wifi packet libpcap
the correct way to use pcap_next_ex or pcap_next (libpcap)

I saw this kind of code used in a project: while (1) { l_numPkts = pcap_next_ex( m_pcapHandle, &header, &…

libpcap