This is a Rust language crate for accessing the packet sniffing capabilities of pcap (or wpcap on Windows). It is limited in functionality, so if you need anything feel free to post an issue or submit a pull request!
- List devices
- Open capture handle on a device
- Configure some parameters like promiscuity and buffer length
- Get packets from the capture handle
See examples for usage.
Install WinPcap.
Place wpcap.dll in your C:\Rust\bin\rustlib\x86_64-pc-windows-gnu\lib\
directory on 64 bit
or C:\Rust\bin\rustlib\i686-pc-windows-gnu\lib\
on 32 bit.
On Debian based Linux, install libpcap-dev
.
Currently not supported because I don't have OSX, let me know if you can help.