From 6598993359025509a8fbd3d1f1079271e6c53e98 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 19 Jun 2014 15:18:35 +0000 Subject: [PATCH] hnet: update mode selection --- protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua b/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua index bd6c51835..0cf8c0101 100644 --- a/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua +++ b/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua @@ -12,8 +12,14 @@ You may obtain a copy of the License at local map, section, net = ... -section:taboption("general", Flag, "guest", translate("Guest mode")) -section:taboption("advanced", Flag, "adhoc", translate("Ad-hoc mode")) +local mode = section:taboption("general", ListValue, "mode", translate("Category")) +mode:value("auto", translate("Automatic")) +mode:value("external", translate("External")) +mode:value("guest", translate("Guest")) +mode:value("adhoc", translate("Ad-Hoc")) +mode.default = "auto" + + local plen = section:taboption("advanced", Value, "ip6assign", translate("IPv6 assignment length"), translate("Assign a part of given length of every public IPv6-prefix to this interface")) -- 2.11.0