diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js b/protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js index 6a23407b50..f58f553c36 100644 --- a/protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js +++ b/protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js @@ -41,6 +41,10 @@ return network.registerProtocol('sstp', { o = s.taboption('general', form.Value, 'server', _('SSTP Server')); o.datatype = 'host'; + o = s.taboption('general', form.Value, 'port', _('SSTP Port')); + o.placeholder = '443'; + o.datatype = 'port'; + o = s.taboption('general', form.Value, 'username', _('PAP/CHAP username')); o = s.taboption('general', form.Value, 'password', _('PAP/CHAP password')); |