-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathREADME.txt.in
27 lines (18 loc) · 909 Bytes
/
README.txt.in
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
= pcap - a binding to libpcap
libpcap is the library behind the commonly use tcpdump utility. It allows
reading packet captures live from a network, as well as reading and writing
saved packet captures in "pcap" format. It has been ported to many operating
systems.
The binding doesn't implement the full libpcap API, just what we've needed so
far.
To build, see Makefile, it supports FreeBSD, Linux and OS X.
To decode the packets, you might want to use libnet's lua bindings, see the
lua/ subdirectory of <https://github.com/sam-github/libnet>.
Homepage: <https://github.com/sam-github/pcap-lua>
Author: <[email protected]>
If this doesn't do what you need,
<https://github.com/javierguerragiraldez/pcaplua> is a binding to a different
subset of libpcap's API. Also, it has tcp/ip parsing functions, whereas we use
libnet for that.
Documentation:
See below, extracted from in-source comments.