1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 01:49:03 +00:00

Remove unused functions from snmp.lua

This commit is contained in:
dmiller
2024-11-12 20:05:58 +00:00
parent fdf5a2d7e9
commit 82586d6327

View File

@@ -386,29 +386,6 @@ function oid2str(oid)
return table.concat(oid, '.')
end
---
-- Transforms a table representing an IP to a string.
-- @param ip IP table.
-- @return IP string.
function ip2str(ip)
if (type(ip) ~= "table") then return 'invalid ip' end
return table.concat(ip, '.')
end
---
-- Transforms a string into an IP table.
-- @param ipStr IP as string.
-- @return Table representing IP.
function str2ip(ipStr)
local ip = {}
for n in string.gmatch(ipStr, "%d+") do
table.insert(ip, tonumber(n))
end
ip._snmp = '\x40'
return ip
end
---
-- Fetches values from a SNMP response.