mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 04:39:51 +00:00
This commit updates openvpn to version 2.6.5 and add DCO support. There are several changes: - Starting with version 2.6.0, the sources are only provided as .tar.gz file. - removed OPENVPN_<variant>_ENABLE_MULTIHOME: multihome support is always included and cannot be disabled anymore with 2.6.x. - removed OPENVPN_<variant>_ENABLE_DEF_AUTH: deferred auth support is always included and cannot be disabled anymore with 2.6.x. - removed OPENVPN_<variant>_ENABLE_PF: PF (packet filtering) support was removed in 2.6.x. - The internal lz4 library was removed in 2.6.x; we now use the liblz4 package if needed - To increase reproducibility, _DATE_ is only used for development builds and not in release builds in 2.6.x. - wolfSSL support was integrated into upstream openvpn - DES support was removed from openvpn The first two wolfSSL patches were created following these 2 commits:4cf01c8e43
028b501734
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
if PACKAGE_openvpn-openssl
|
|
|
|
config OPENVPN_openssl_ENABLE_LZO
|
|
bool "Enable LZO compression support"
|
|
default y
|
|
|
|
config OPENVPN_openssl_ENABLE_LZ4
|
|
bool "Enable LZ4 compression support"
|
|
default y
|
|
|
|
config OPENVPN_openssl_ENABLE_X509_ALT_USERNAME
|
|
bool "Enable the --x509-username-field feature"
|
|
default n
|
|
|
|
#config OPENVPN_openssl_ENABLE_EUREPHIA
|
|
# bool "Enable support for the eurephia plug-in"
|
|
# default n
|
|
|
|
config OPENVPN_openssl_ENABLE_MANAGEMENT
|
|
bool "Enable management server support"
|
|
default n
|
|
|
|
#config OPENVPN_openssl_ENABLE_PKCS11
|
|
# bool "Enable pkcs11 support"
|
|
# default n
|
|
|
|
config OPENVPN_openssl_ENABLE_FRAGMENT
|
|
bool "Enable internal fragmentation support (--fragment)"
|
|
default y
|
|
|
|
config OPENVPN_openssl_ENABLE_PORT_SHARE
|
|
bool "Enable TCP server port-share support (--port-share)"
|
|
default y
|
|
|
|
config OPENVPN_openssl_ENABLE_IPROUTE2
|
|
bool "Enable support for iproute2"
|
|
default n
|
|
|
|
config OPENVPN_openssl_ENABLE_DCO
|
|
depends on !OPENVPN_openssl_ENABLE_IPROUTE2
|
|
bool "Enable support for data channel offload"
|
|
default n if OPENVPN_openssl_ENABLE_IPROUTE2
|
|
help
|
|
enable data channel offload support
|
|
using the ovpn-dco-v2 kernel module
|
|
|
|
config OPENVPN_openssl_ENABLE_SMALL
|
|
bool "Enable size optimization"
|
|
default y
|
|
help
|
|
enable smaller executable size (disable OCC, usage
|
|
message, and verb 4 parm list)
|
|
|
|
endif
|