aboutsummaryrefslogtreecommitdiff
path: root/libs/libtins/Config.in
blob: 1d5efd102ae28dc9223a05c73e9825737a6a7092 (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
28
29
30
31
32
# libtins configuration
menu "Configuration"
	depends on PACKAGE_libtins

config LIBTINS_ENABLE_ACK_TRACKER
	bool "Enable ACK tracker"
	default n

config LIBTINS_ENABLE_CXX11
	bool "Enable C++11"
	default y

config LIBTINS_ENABLE_DOT11
	bool "Enable IEEE 802.11 support (select this to access ENABLE_WPA2 option)"
	help
		If selected, this also allows configuring WPA2 support which requires openssl
	default n

config LIBTINS_ENABLE_PCAP
	bool "Enable PCAP library support"
	default y

config LIBTINS_ENABLE_TCP_STREAM_CUSTOM_DATA
	bool "Enable TCP stream custom data"
	default n

config LIBTINS_ENABLE_WPA2
	depends on LIBTINS_ENABLE_DOT11
	bool "Enable WPA2 (this selects libopenssl)"
	default n
endmenu