Crates.io | netmap_sys |
lib.rs | netmap_sys |
version | 0.1.4 |
source | src |
created_at | 2015-03-27 18:34:27.290136 |
updated_at | 2019-04-16 18:08:46.56513 |
description | Bindings to netmap - the fast packet I/O framework |
homepage | http://info.iet.unipi.it/~luigi/netmap/ |
repository | https://github.com/libpnet/rust-netmap |
max_upload_size | |
id | 1725 |
size | 15,067 |
Rust bindings to netmap, currently at version 3.17 (Linux).
To use within your own project, add:
[dependencies.netmap_sys]
version = "0.1.4"
# Uncomment this line where you wish to use features guarded by the
# NETMAP_WITH_LIBS macro in C.
#features = "netmap_with_libs"
To your Cargo.toml.
If you get an error containing the message:
error: could not find native static library `rust_netmap_user`, perhaps an -L flag is missing?
You should check the following things:
/usr/include/net/netmap.h
and
/usr/include/net/netmap_user.h
both exist. If they do not, you should
check your netmap installation. You can either manually add these files or
symlinks to the, or change the paths searched in build.rs
.cargo build -v
, your operating system and distribution,
how you installed netmap, and the output of clang -DNETMAP_WITH_LIBS -Dstatic= -Dinline= -x c -fPIC -O2 -c /usr/include/net/netmap_user.h -o $(mktemp)
.