summaryrefslogtreecommitdiffstats
path: root/rules/libnftnl.in
blob: 7d91ccea8e39a8c77cfed0639c6b2a20be4181e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## SECTION=networking

menuconfig LIBNFTNL
	tristate
	select LIBMNL
	select LIBMXML if LIBNFTNL_XML
	select JANSSON if LIBNFTNL_JSON
	prompt "libnftnl                      "
	help
	  libnftnl is a userspace library providing a low-level netlink
	  programming interface (API) to the in-kernel nf_tables subsystem.
	  The library libnftnl has been previously known as libnftables.
	  This library is currently used by nftables.

if LIBNFTNL

config LIBNFTNL_XML
	bool
	depends on LIBNFTNL
	prompt "XML parsing support"

config LIBNFTNL_JSON
	bool
	depends on LIBNFTNL
	prompt "JSON parsing support"

endif