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.

48 lines
960 B

  1. # CoovaChilli advanced configuration
  2. if PACKAGE_coova-chilli
  3. config COOVACHILLI_PROXY
  4. bool "Enable support for chilli proxy. Required for AAA Proxy through http"
  5. default n
  6. config COOVACHILLI_REDIR
  7. bool "Enable support for redir server. Required for uamregex"
  8. default n
  9. config COOVACHILLI_MINIPORTAL
  10. bool "Enable support Coova miniportal"
  11. default n
  12. config COOVACHILLI_USERAGENT
  13. bool "Enable recording user-agent"
  14. default n
  15. config COOVACHILLI_UAMDOMAINFILE
  16. bool "Enable loading of mass uamdomains from file"
  17. default n
  18. config COOVACHILLI_LARGELIMITS
  19. bool "Enable larger limits for use with non-embedded systems"
  20. default n
  21. config COOVACHILLI_JSONINTERFACE
  22. bool "Enable the JSON interface for the CoovaChilli Controller"
  23. default n
  24. choice
  25. prompt "SSL library"
  26. default COOVACHILLI_NOSSL
  27. config COOVACHILLI_NOSSL
  28. bool "No SSL support"
  29. config COOVACHILLI_WOLFSSL
  30. bool "wolfSSL"
  31. config COOVACHILLI_OPENSSL
  32. bool "OpenSSL"
  33. endchoice
  34. endif