You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
708 B

  1. # libtins configuration
  2. menu "Configuration"
  3. depends on PACKAGE_libtins
  4. config LIBTINS_ENABLE_ACK_TRACKER
  5. bool "Enable ACK tracker"
  6. default n
  7. config LIBTINS_ENABLE_CXX11
  8. bool "Enable C++11"
  9. default y
  10. config LIBTINS_ENABLE_DOT11
  11. bool "Enable IEEE 802.11 support (select this to access ENABLE_WPA2 option)"
  12. help
  13. If selected, this also allows configuring WPA2 support which requires openssl
  14. default n
  15. config LIBTINS_ENABLE_PCAP
  16. bool "Enable PCAP library support"
  17. default y
  18. config LIBTINS_ENABLE_TCP_STREAM_CUSTOM_DATA
  19. bool "Enable TCP stream custom data"
  20. default n
  21. config LIBTINS_ENABLE_WPA2
  22. depends on LIBTINS_ENABLE_DOT11
  23. bool "Enable WPA2 (this selects libopenssl)"
  24. default n
  25. endmenu