diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-09-02 15:33:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 15:33:59 +0200 |
commit | 82d438489817ac7ab05195e21e427f29d5525a63 (patch) | |
tree | a8826203f75eeb9c729cd36515fd06dd6d046c44 /protocols | |
parent | 4befacfef526398ded28664d51378c7b2f2e46e6 (diff) | |
parent | 1997bcc11bcbd14f7bf51867539f4faabf3fec0a (diff) |
Merge pull request #4355 from RemiNV/legacymap
protocols: add legacymap option for map
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js b/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js index 006ebfbf0..2c7f3cfe9 100644 --- a/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js +++ b/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js @@ -92,5 +92,7 @@ return network.registerProtocol('map', { o = s.taboption('advanced', form.Value, 'mtu', _('Use MTU on tunnel interface')); o.placeholder = '1280'; o.datatype = 'max(9200)'; + + o = s.taboption('advanced', form.Flag, 'legacymap', _('Use legacy MAP'), _('Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) instead of RFC7597')); } }); |