bugfix: signal charts drop-down list only contains the avg signal for all connected stations (fixes #48) (#58)

This commit is contained in:
dman776 2018-07-12 17:32:55 -05:00 committed by GitHub
parent 070b43e817
commit 2db67fc168
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 63 additions and 3 deletions

View File

@ -251,3 +251,63 @@ function capture(cmd)
handle:close() handle:close()
return(result) return(result)
end end
--[[
LuCI - System library
Description:
Utilities for interaction with the Linux system
FileId:
$Id: sys.lua 9662 2013-01-30 13:36:20Z soma $
License:
Copyright 2008 Steven Barth <steven@midlink.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]--
--- Returns the current arp-table entries as two-dimensional table.
-- @return Table of table containing the current arp entries.
-- The following fields are defined for arp entry objects:
-- { "IP address", "HW address", "HW type", "Flags", "Mask", "Device" }
function arptable(callback)
local arp, e, r, v
if nixio.fs.access("/proc/net/arp") then
for e in io.lines("/proc/net/arp") do
local r = { }, v
for v in e:gmatch("%S+") do
r[#r+1] = v
end
if r[1] ~= "IP" then
local x = {
["IP address"] = r[1],
["HW type"] = r[2],
["Flags"] = r[3],
["HW address"] = r[4],
["Mask"] = r[5],
["Device"] = r[6]
}
if callback then
callback(x)
else
arp = arp or { }
arp[#arp+1] = x
end
end
end
end
return arp
end

View File

@ -189,7 +189,7 @@ function Neighbor:findNoise()
end end
function Neighbor:findTxMcs() function Neighbor:findTxMcs()
self.tx_mcs=stations[self.mac:upper()].tx_mcs self.tx_mcs=stations[self.mac:upper()].tx_mcs or -1
return self.tx_mcs return self.tx_mcs
end end
@ -200,7 +200,7 @@ function Neighbor:findTxRate()
end end
function Neighbor:findRxMcs() function Neighbor:findRxMcs()
self.rx_mcs=stations[self.mac:upper()].rx_mcs self.rx_mcs=stations[self.mac:upper()].rx_mcs or -1
return self.rx_mcs return self.rx_mcs
end end
@ -290,7 +290,7 @@ stations=iwinfo["nl80211"].assoclist(wifiiface)
-- load up arpcache -- load up arpcache
luci.sys.net.arptable( arptable(
function(a) function(a)
arpcache[a["HW address"]:lower()]=a arpcache[a["HW address"]:lower()]=a
end end