sslh: use tls option instead of deprecated ssl 12280/head
authorGabor Seljan <sgabe@users.noreply.github.com>
Sun, 24 May 2020 15:44:25 +0000 (17:44 +0200)
committerGabor Seljan <sgabe@users.noreply.github.com>
Tue, 26 May 2020 18:02:15 +0000 (20:02 +0200)
Upstream will drop support for the ssl option in the next future version.

Signed-off-by: Gabor Seljan <sgabe@users.noreply.github.com>
net/sslh/files/sslh.config
net/sslh/files/sslh.init

index cbd767a45fa96b36b1fa8d809b1517f067120be7..242c46cedf52b4048ac0618262c274a2083a84a0 100644 (file)
@@ -13,9 +13,9 @@ config 'sslh' 'default'
        # http defaults to 'localhost:80'
        # --http <httphost>:<httpport>
        option 'http' ''
-       # ssl defaults to 'localhost:443'
-       # --ssl <sslhost>:<sslport>
-       option 'ssl' ''
+       # tls defaults to 'localhost:443'
+       # --tls <tlshost>:<tlsport>
+       option 'tls' ''
        # openvpn defaults to 'localhost:1194'
        # --openvpn <openvpnhost>:<openvpnport>
        option 'openvpn' ''
index 401beb689b538bff6539b6fa1e400f0484af3b70..8d7d1f185d8586155429534c18ca4b0838c20035 100644 (file)
@@ -22,9 +22,9 @@ start_instance() {
        # B) ssh parameter
        config_get val "${section}" ssh
        [ -n "${val}" ] && append args "--ssh ${val}"
-       # C) ssl parameter
-       config_get val "${section}" ssl
-       [ -n "${val}" ] && append args "--ssl ${val}"
+       # C) tls parameter
+       config_get val "${section}" tls
+       [ -n "${val}" ] && append args "--tls ${val}"
        # D) openvpn parameter
        config_get val "${section}" openvpn
         [ -n "${val}" ] && append args "--openvpn ${val}"