luci-app-unbound: add protocol=ip4_local option support 2152/head
authorEric Luehrsen <ericluehrsen@gmail.com>
Sun, 16 Sep 2018 00:35:26 +0000 (20:35 -0400)
committerEric Luehrsen <ericluehrsen@gmail.com>
Sun, 16 Sep 2018 04:00:41 +0000 (00:00 -0400)
Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua

index df2164f8a647ab8fb3a597f87fd1f70a52fca935..60d0477d53910ff0ae7d8b1070d81d1473566625 100644 (file)
@@ -210,10 +210,11 @@ if (valman == "0") then
 
     pro = s1:taboption("resource", ListValue, "protocol",
         translate("Recursion Protocol"),
-        translate("Chose the protocol recursion queries leave on"))
+        translate("Chose the IP versions used upstream and downstream"))
     pro:value("default", translate("Default"))
     pro:value("ip4_only", translate("IP4 Only"))
-    pro:value("ip6_only", translate("IP6 Only"))
+    pro:value("ip6_local", translate("IP4 All and IP6 Local"))
+    pro:value("ip6_only", translate("IP6 Only*"))
     pro:value("ip6_prefer", translate("IP6 Preferred"))
     pro:value("mixed", translate("IP4 and IP6"))
     pro.rmempty = false