1
0

Config-nossl.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. if PACKAGE_openvpn-nossl
  2. config OPENVPN_nossl_ENABLE_LZO
  3. bool "Enable LZO compression support"
  4. default y
  5. config OPENVPN_nossl_ENABLE_LZ4
  6. bool "Enable LZ4 compression support"
  7. default y
  8. config OPENVPN_nossl_ENABLE_SERVER
  9. bool "Enable server support (otherwise only client mode is support)"
  10. default y
  11. config OPENVPN_nossl_ENABLE_MANAGEMENT
  12. bool "Enable management server support"
  13. default n
  14. config OPENVPN_nossl_ENABLE_HTTP
  15. bool "Enable HTTP proxy support"
  16. default y
  17. config OPENVPN_nossl_ENABLE_SOCKS
  18. bool "Enable SOCKS proxy support"
  19. default y
  20. config OPENVPN_nossl_ENABLE_FRAGMENT
  21. bool "Enable internal fragmentation support (--fragment)"
  22. default y
  23. config OPENVPN_nossl_ENABLE_MULTIHOME
  24. bool "Enable multi-homed UDP server support (--multihome)"
  25. default y
  26. config OPENVPN_nossl_ENABLE_PORT_SHARE
  27. bool "Enable TCP server port-share support (--port-share)"
  28. default y
  29. config OPENVPN_nossl_ENABLE_DEF_AUTH
  30. bool "Enable deferred authentication"
  31. default y
  32. config OPENVPN_nossl_ENABLE_PF
  33. bool "Enable internal packet filter"
  34. default y
  35. config OPENVPN_nossl_ENABLE_IPROUTE2
  36. bool "Enable support for iproute2"
  37. default n
  38. config OPENVPN_nossl_ENABLE_SMALL
  39. bool "Enable size optimization"
  40. default y
  41. help
  42. enable smaller executable size (disable OCC, usage
  43. message, and verb 4 parm list)
  44. endif