#netlink #libmnl #bindings #userspace #minimalist #level #low

sys no-std mnl-sys

Low level FFI bindings to libmnl. A minimalistic user-space library oriented to Netlink developers

3 unstable releases

0.2.1 Feb 11, 2022
0.2.0 Sep 23, 2019
0.1.0 Aug 29, 2018

#788 in Unix APIs

Download history 1800/week @ 2023-11-20 1911/week @ 2023-11-27 4359/week @ 2023-12-04 3475/week @ 2023-12-11 2066/week @ 2023-12-18 1329/week @ 2023-12-25 2264/week @ 2024-01-01 2578/week @ 2024-01-08 2317/week @ 2024-01-15 2123/week @ 2024-01-22 2453/week @ 2024-01-29 3547/week @ 2024-02-05 3344/week @ 2024-02-12 2024/week @ 2024-02-19 3067/week @ 2024-02-26 4476/week @ 2024-03-04

13,073 downloads per month
Used in 2 crates (via mnl)

MIT/Apache

15KB
232 lines

mnl-sys

Low level FFI bindings to libmnl. A minimalistic user-space library oriented to Netlink developers. See mnl for a higher level safe abstraction.

These bindings were generated with bindgen. See the generate_bindings.sh script in the repository.

Linking to libmnl

By default this crate uses pkg-config to find and link to libmnl. To manually configure where to look for the library, set the environment variable LIBMNL_LIB_DIR to point to the directory where libmnl.so or libmnl.a resides.

Selecting version of libmnl

This crate has bindings for multiple versions of libmnl. All bindings are generated by bindgen via the generate_bindings.sh script in this repository.

Only one version of libmnl can be exposed via this crate. By default the crate exports the bindings for the oldest supported version (libmnl-1.0.3). To get newer versions activate the corresponding features. See Cargo.toml for available features/versions.

So for example, to get bindings to libmnl-1.0.4 depend on this crate like this:

[dependencies]
mnl-sys = { version = "0.1", features = ["mnl-1-0-4"] }

License: MIT/Apache-2.0

Dependencies

~46KB