X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=protocols%2F6x4%2Fluasrc%2Fmodel%2Fnetwork%2Fproto_6x4.lua;fp=protocols%2F6x4%2Fluasrc%2Fmodel%2Fnetwork%2Fproto_6x4.lua;h=b800b0b540ce6c3138c64545bf99bd18be783246;hb=a00b558210c84cb592349216a40318261e693cc2;hp=63735f6f8e9ef923020779ce6683c4c2bc8ca64a;hpb=5898a32f557c7d7542734546eb6853f9b2c64f02;p=project%2Fluci.git diff --git a/protocols/6x4/luasrc/model/network/proto_6x4.lua b/protocols/6x4/luasrc/model/network/proto_6x4.lua index 63735f6f8..b800b0b54 100644 --- a/protocols/6x4/luasrc/model/network/proto_6x4.lua +++ b/protocols/6x4/luasrc/model/network/proto_6x4.lua @@ -1,5 +1,5 @@ --[[ -LuCI - Network model - 6to4 & 6in4 protocol extension +LuCI - Network model - 6to4, 6in4 & 6rd protocol extensions Copyright 2011 Jo-Philipp Wich @@ -20,7 +20,7 @@ limitations under the License. local netmod = luci.model.network local _, p -for _, p in ipairs({"6in4", "6to4"}) do +for _, p in ipairs({"6in4", "6to4", "6rd"}) do local proto = netmod:register_protocol(p) @@ -28,7 +28,9 @@ for _, p in ipairs({"6in4", "6to4"}) do if p == "6in4" then return luci.i18n.translate("IPv6-in-IPv4 (RFC4213)") elseif p == "6to4" then - return luci.i18n.translate("IPv6-over-IPv4") + return luci.i18n.translate("IPv6-over-IPv4 (6to4)") + elseif p == "6rd" then + return luci.i18n.translate("IPv6-over-IPv4 (6rd)") end end