diff options
author | Dirk Brenken <dev@brenken.org> | 2018-09-16 08:41:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-16 08:41:25 +0200 |
commit | 3c4d2ebb87b69d8cde1b9a81698f694815f1b944 (patch) | |
tree | db3907126d153da0d15ef6be201ad103cbf706d2 /applications | |
parent | 6bea6eebf0f6d05473ee30ed8634c27c02f9c194 (diff) | |
parent | f4818d414a94f4c0662c987cafa478701c000f7c (diff) |
Merge pull request #2152 from EricLuehrsen/unbound-1.8.0
luci-app-unbound: add protocol=ip4_local option support
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua index df2164f8a..60d0477d5 100644 --- a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua +++ b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua @@ -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 |