Config-nossl.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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_FRAGMENT
  15. bool "Enable internal fragmentation support (--fragment)"
  16. default y
  17. config OPENVPN_nossl_ENABLE_MULTIHOME
  18. bool "Enable multi-homed UDP server support (--multihome)"
  19. default y
  20. config OPENVPN_nossl_ENABLE_PORT_SHARE
  21. bool "Enable TCP server port-share support (--port-share)"
  22. default y
  23. config OPENVPN_nossl_ENABLE_DEF_AUTH
  24. bool "Enable deferred authentication"
  25. default y
  26. config OPENVPN_nossl_ENABLE_PF
  27. bool "Enable internal packet filter"
  28. default y
  29. config OPENVPN_nossl_ENABLE_IPROUTE2
  30. bool "Enable support for iproute2"
  31. default n
  32. config OPENVPN_nossl_ENABLE_SMALL
  33. bool "Enable size optimization"
  34. default y
  35. help
  36. enable smaller executable size (disable OCC, usage
  37. message, and verb 4 parm list)
  38. endif