diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-21 09:03:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 09:03:01 +0100 |
commit | 1fbe679aaaa34b12ad84015eac74ddafb0c0c4b3 (patch) | |
tree | 18d0fb376533b560bed8573919448fa1fe3c4b1a | |
parent | 27d63e7e7157bcc72658533709633afd826ebbde (diff) | |
parent | 4efe965cd8602533e305a0733acedcf7edb4508f (diff) |
Merge pull request #3659 from wfleurant/yggdrasil-3-13
luci-app-yggdrasil: fix listen uri type and remove tap for v3.13
-rw-r--r-- | applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js index b72c2fac2..52d79a47e 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js @@ -33,7 +33,6 @@ return L.view.extend({ try { JSON.parse(v); return true; } catch (e) { return e.message; } } - s.option(form.Flag, "IfTAPMode", _("Enable tap mode")); s.option(form.Value, "IfMTU", _("MTU size for the interface")); s.option(form.Value, "SwitchOptions_MaxTotalQueueSize", _("Maximum size of all switch queues combined")); @@ -53,8 +52,8 @@ return L.view.extend({ "Multicast peer discovery will work regardless of any listeners set " + "here. Each listener should be specified in URI format as above, e.g. " + "tcp://0.0.0.0:0 or tcp://[::]:0 to listen on all interfaces.")); - o.option(form.Value, "address", _("Address to listen for incoming connections"), + o.option(form.Value, "uri", _("e.g. tcp://0.0.0.0:0 or tcp://[::]:0")); o.anonymous = true; o.addremove = true; |