Skip to content
Snippets Groups Projects
Commit 40321595 authored by Nils Schneider's avatar Nils Schneider
Browse files

Merge pull request #62 from freifunk-gluon/clientcount

mesh-batman-adv-core: add clientcount statistics
parents fea00b36 a1d27aef
No related branches found
No related tags found
No related merge requests found
local list = io.lines("/sys/kernel/debug/batman_adv/bat0/transtable_local")
local count = 0
local wifi = 0
for line in list do
local mac, _, flags, lastseen = line:match("^ %* ([0-9a-f:]+) *(.- )%[(.-)%] +(%d+%.%d+)")
if mac then
if not flags:match('P') then
count = count + 1
if flags:match('W') then
wifi = wifi +1
end
end
end
end
return { total = count
, wifi = wifi
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment