forked from dugsong/pypcap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
31 lines (20 loc) · 686 Bytes
/
README
File metadata and controls
31 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Python pcap module
------------------
This is a simplified object-oriented Python wrapper for libpcap -
the current tcpdump.org version, and the WinPcap port for Windows.
example use:
>>> import pcap
>>> for ts, pkt in pcap.pcap():
... print ts, `pkt`
...
Building
--------
Just try 'make', and then 'make install'
If your libpcap installation is missing the pcap-int.h header, you
will need to build against a libpcap build directory. Modify the
CONFIG_ARGS in the Makefile to point to the location of your built
libpcap distribution, and try again.
See INSTALL file for more detailed build instructions.
Support
-------
Visit http://code.google.com/p/pypcap for help!