#firewall #nftables #iptables #netfilter #nft

sys no-std nftnl-sys

Low level FFI bindings to libnftnl. Provides low-level userspace access to the in-kernel nf_tables subsystem

8 releases (5 breaking)

0.6.2 Sep 19, 2024
0.6.1 Feb 11, 2022
0.6.0 Nov 23, 2020
0.5.0 Jun 4, 2020
0.1.0 Sep 19, 2018

#554 in Unix APIs

Download history 2965/week @ 2024-06-27 2398/week @ 2024-07-04 2115/week @ 2024-07-11 3232/week @ 2024-07-18 6666/week @ 2024-07-25 3638/week @ 2024-08-01 4871/week @ 2024-08-08 5552/week @ 2024-08-15 5666/week @ 2024-08-22 5313/week @ 2024-08-29 3923/week @ 2024-09-05 3253/week @ 2024-09-12 5556/week @ 2024-09-19 3386/week @ 2024-09-26 3687/week @ 2024-10-03 2228/week @ 2024-10-10

15,806 downloads per month
Used in nftnl

MIT/Apache

290KB
6.5K SLoC

nftnl-sys

Low level FFI bindings to libnftnl, a userspace library providing a low-level netlink programming interface (API) to the in-kernel nf_tables subsystem.

See nftnl for a higher level safe abstraction.

Linking to libmnl and libnftnl

By default this crate uses pkg-config to find and link to its C dependencies, libmnl and libnftnl. To manually configure where to look for these libraries, set the environment variables LIBMNL_LIB_DIR and LIBNFTNL_LIB_DIR to point to the directories where libmnl.so (or libmnl.a) and libnftnl.so (or libnftnl.a) reside.

Selecting version of libnftnl

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

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

So for example, to get bindings to libnftnl-1.0.9 depend on this crate like this:

[dependencies]
nftnl-sys = { version = "0.1", features = ["nftnl-1-0-9"] }

License: MIT/Apache-2.0

Dependencies