Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jmmk/rustcap

Rust wrapper for libpcap
https://github.com/jmmk/rustcap

libpcap packet rust sniffing

Last synced: about 2 months ago
JSON representation

Rust wrapper for libpcap

Awesome Lists containing this project

README

        

# Archived

This library is very minimal and is not maintained, so I have archived it. I recommend looking at alternatives like [libpnet](https://github.com/libpnet/libpnet) and [rust-pcap/pcap](https://github.com/rust-pcap/pcap).

# Rustcap
Rust wrapper for libpcap

[![*nix build status](https://travis-ci.org/jmmk/rustcap.svg?branch=master)](https://travis-ci.org/jmmk/rustcap)
[![Windows build status](https://ci.appveyor.com/api/projects/status/6rf0ygpcww6fegt2/branch/master?svg=true)](https://ci.appveyor.com/project/jmmk/rustcap/branch/master)
[![](http://meritbadge.herokuapp.com/rustcap)](https://crates.io/crates/rustcap)

### Developing

#### Windows
By default, rustcap will link with library files from the [WinPcap SDK](https://www.winpcap.org/devel.htm). 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](https://nmap.org/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](https://www.winpcap.org/install/default.htm)
- [Npcap](https://nmap.org/npcap/) - Look for the link to the installer. Install in Winpcap compatibility mode
- [Winpcap updated to NDIS 6](http://www.win10pcap.org/)

Each download is subject to a different License; see the documentation for details.

#### *nix
libpcap will need to be available on the library path