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.

44 lines
850 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. choice
  22. prompt "SSL library"
  23. default COOVACHILLI_NOSSL
  24. config COOVACHILLI_NOSSL
  25. bool "No SSL support"
  26. config COOVACHILLI_WOLFSSL
  27. bool "wolfSSL"
  28. config COOVACHILLI_OPENSSL
  29. bool "OpenSSL"
  30. endchoice
  31. endif