| # 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 |
| |