libs/core: more fixes in network model
This commit is contained in:
parent
dc46ee35b8
commit
a6dcb3f6a3
1 changed files with 13 additions and 13 deletions
|
@ -778,6 +778,7 @@ function network.get_interface(self)
|
|||
end
|
||||
|
||||
function network.get_interfaces(self)
|
||||
if self:is_bridge() or (self:is_virtual() and not self:is_floating()) then
|
||||
local ifaces = { }
|
||||
|
||||
local ifn
|
||||
|
@ -791,7 +792,6 @@ function network.get_interfaces(self)
|
|||
ifaces[#ifaces+1] = nfs[ifn]
|
||||
end
|
||||
|
||||
if self:is_bridge() then
|
||||
local num = { }
|
||||
local wfs = { }
|
||||
uci_r:foreach("wireless", "wifi-iface",
|
||||
|
@ -808,10 +808,10 @@ function network.get_interfaces(self)
|
|||
for ifn in utl.kspairs(wfs) do
|
||||
ifaces[#ifaces+1] = wfs[ifn]
|
||||
end
|
||||
end
|
||||
|
||||
return ifaces
|
||||
end
|
||||
end
|
||||
|
||||
function network.contains_interface(self, ifname)
|
||||
if type(ifname) ~= "string" then
|
||||
|
|
Loading…
Reference in a new issue