lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (1027B)


      1 # CoovaChilli advanced configuration
      2 
      3 menu "Configuration"
      4 	depends on PACKAGE_coova-chilli
      5 
      6 config COOVACHILLI_PROXY
      7         bool "Enable support for chilli proxy. Required for AAA Proxy through http"
      8         default n
      9 
     10 config COOVACHILLI_REDIR
     11 	bool "Enable support for redir server. Required for uamregex"
     12 	default n
     13 
     14 config COOVACHILLI_MINIPORTAL
     15 	bool "Enable support Coova miniportal"
     16 	default n
     17 
     18 config COOVACHILLI_USERAGENT
     19 	bool "Enable recording user-agent"
     20 	default n
     21 
     22 config COOVACHILLI_DNSLOG
     23 	bool "Enable support to log DNS name queries"
     24 	default n
     25 
     26 config COOVACHILLI_UAMDOMAINFILE
     27 	bool "Enable loading of mass uamdomains from file"
     28 	default n
     29 
     30 config COOVACHILLI_LARGELIMITS
     31 	bool "Enable larger limits for use with non-embedded systems"
     32 	default n
     33 
     34 choice
     35 	prompt "SSL library"
     36 	default COOVACHILLI_NOSSL
     37 
     38 config COOVACHILLI_NOSSL
     39 	bool "No SSL support"
     40 
     41 config COOVACHILLI_MATRIXSSL
     42 	bool "MatrixSSL"
     43 
     44 config COOVACHILLI_CYASSL
     45 	bool "CyaSSL"
     46 
     47 config COOVACHILLI_OPENSSL
     48 	bool "OpenSSL"
     49 
     50 endchoice
     51 
     52 endmenu