Add a new build configuration option for openconnect and let it link against libstoken if instructed to. Two new uci configuration variables are introduced: "token_mode" and "token_secret" to allow openconnect to use those. Signed-off-by: Florian Fainelli <florian@openwrt.org>
21 lines
312 B
Text
21 lines
312 B
Text
# openconnect avanced configuration
|
|
|
|
menu "Configuration"
|
|
depends on PACKAGE_openconnect
|
|
|
|
choice
|
|
prompt "SSL library"
|
|
default OPENCONNECT_GNUTLS
|
|
|
|
config OPENCONNECT_GNUTLS
|
|
bool "GnuTLS support"
|
|
|
|
config OPENCONNECT_OPENSSL
|
|
bool "OpenSSL"
|
|
|
|
endchoice
|
|
|
|
config OPENCONNECT_STOKEN
|
|
bool "stoken support"
|
|
|
|
endmenu
|