libs/core: fallback to ipv6-prefix-assignment if ipv6-address is empty

This commit is contained in:
Steven Barth 2013-06-24 12:00:33 +00:00
parent c4cf9267e4
commit 6e7fb14afc

View file

@ -813,8 +813,14 @@ end
function protocol.ip6addr(self)
local addrs = self:_ubus("ipv6-address")
return addrs and #addrs > 0
and "%s/%d" %{ addrs[1].address, addrs[1].mask }
if addrs and #addrs > 0 then
return "%s/%d" %{ addrs[1].address, addrs[1].mask }
else
addrs = self:_ubus("ipv6-prefix-assignment")
if addrs and #addrs > 0 then
return "%s/%d" %{ addrs[1].address, addrs[1].mask }
end
end
end
function protocol.gw6addr(self)