OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 if PACKAGE_openvpn-mbedtls
2  
3 config OPENVPN_mbedtls_ENABLE_LZO
4 bool "Enable LZO compression support"
5 default y
6  
7 config OPENVPN_mbedtls_ENABLE_LZ4
8 bool "Enable LZ4 compression support"
9 default y
10  
3 office 11 config OPENVPN_mbedtls_ENABLE_X509_ALT_USERNAME
12 bool "Enable the --x509-username-field feature"
13 default n
14  
1 office 15 config OPENVPN_mbedtls_ENABLE_SERVER
16 bool "Enable server support (otherwise only client mode is support)"
17 default y
18  
19 #config OPENVPN_mbedtls_ENABLE_EUREPHIA
20 # bool "Enable support for the eurephia plug-in"
21 # default n
22  
23 config OPENVPN_mbedtls_ENABLE_MANAGEMENT
24 bool "Enable management server support"
25 default n
26  
27 #config OPENVPN_mbedtls_ENABLE_PKCS11
28 # bool "Enable pkcs11 support"
29 # default n
30  
3 office 31 config OPENVPN_mbedtls_ENABLE_HTTP
32 bool "Enable HTTP proxy support"
33 default y
34  
35 config OPENVPN_mbedtls_ENABLE_SOCKS
36 bool "Enable SOCKS proxy support"
37 default y
38  
1 office 39 config OPENVPN_mbedtls_ENABLE_FRAGMENT
40 bool "Enable internal fragmentation support (--fragment)"
41 default y
42  
43 config OPENVPN_mbedtls_ENABLE_MULTIHOME
44 bool "Enable multi-homed UDP server support (--multihome)"
45 default y
46  
47 config OPENVPN_mbedtls_ENABLE_PORT_SHARE
48 bool "Enable TCP server port-share support (--port-share)"
49 default y
50  
51 config OPENVPN_mbedtls_ENABLE_DEF_AUTH
52 bool "Enable deferred authentication"
53 default y
54  
55 config OPENVPN_mbedtls_ENABLE_PF
56 bool "Enable internal packet filter"
57 default y
58  
59 config OPENVPN_mbedtls_ENABLE_IPROUTE2
60 bool "Enable support for iproute2"
61 default n
62  
63 config OPENVPN_mbedtls_ENABLE_SMALL
64 bool "Enable size optimization"
65 default y
66 help
67 enable smaller executable size (disable OCC, usage
68 message, and verb 4 parm list)
69  
70 endif