diff options
author | Steven Barth <steven@midlink.org> | 2015-04-10 17:29:42 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-04-10 17:29:42 +0200 |
commit | dc6a250a0183d3f489776d1a7fd2dfda7a8c0c5c (patch) | |
tree | 938ffd7f014c41bb58dc281fbeb755d7f875168c /protocols | |
parent | 576e235d0b90ce383e3970f98323e91f769d3c47 (diff) |
proto_hnet: add missing categories
Signed-off-by: Steven Barth <steven@midlink.org>
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua b/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua index b76475828..2ed34faf7 100644 --- a/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua +++ b/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua @@ -6,8 +6,11 @@ local map, section, net = ... local mode = section:taboption("general", ListValue, "mode", translate("Category")) mode:value("auto", translate("Automatic")) mode:value("external", translate("External")) +mode:value("internal", translate("Internal")) +mode:value("leaf", translate("Leaf")) mode:value("guest", translate("Guest")) mode:value("adhoc", translate("Ad-Hoc")) +mode:value("hybrid", translate("Hybrid")) mode.default = "auto" |