3 releases
Uses old Rust 2015
0.1.2 | Nov 12, 2018 |
---|---|
0.1.1 | Nov 12, 2018 |
0.1.0 | Nov 5, 2018 |
#9 in #libpcap
2MB
43K
SLoC
Rustcap
Rust wrapper for libpcap
Developing
Windows
By default, rustcap will link with library files from the WinPcap SDK. These files (for both MSVC and MinGW) are included in this repo under the terms of the WinPcap License
MSVC:
- Packet.lib
- wpcap.lib
MinGW:
- libpacket.a
- libwpcap.a
To link with a different version of WinPcap such as Npcap, set env var... TODO. Note that Npcap is subject to a different License; see the documentation for details.
*nix
By default, rustcap will link with libpcap found by pkg-config
or pcap-config
(usually /usr/lib/libpcap.dylib
or /usr/lib/libpcap.so
).
To change this, set env var... TODO
Runtime
Windows
At runtime, rustcap will expect Packet.dll and wpcap.dll to be available in the default DLL search paths (see https://msdn.microsoft.com/en-us/library/7d83bc18.aspx). This means in order to run tests and for any end user applications using this code, winpcap and its driver will need to be installed
You can download and install from the following sources:
- Winpcap
- Npcap - Look for the link to the installer. Install in Winpcap compatibility mode
- Winpcap updated to NDIS 6
Each download is subject to a different License; see the documentation for details.
*nix
libpcap will need to be available on the library path