SNMP improvements

This commit is contained in:
Luca Deri 2020-06-16 20:05:08 +02:00
parent e57a0c078c
commit 94076c9976
6 changed files with 171 additions and 94 deletions

View file

@ -2001,6 +2001,7 @@ function table.len(table)
local count = 0
if(table == nil) then return(0) end
for k,v in pairs(table) do
count = count + 1
end