libtins: Added menu configuration options

Signed-off-by: Ilya Tsybulsky <ilya.tsybulsky@gmail.com>
This commit is contained in:
Ilya Tsybulsky
2020-02-09 22:48:43 +03:00
parent fed1b3b11b
commit b93136bdea
2 changed files with 45 additions and 8 deletions
+32
View File
@@ -0,0 +1,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