1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 21:21:31 +00:00

Reduce vertical space from http-server-header

This commit is contained in:
dmiller
2015-06-01 22:37:53 +00:00
parent a61d7dcc17
commit 324dc67541

View File

@@ -19,13 +19,12 @@ correctly.
--
-- PORT STATE SERVICE VERSION
-- 80/tcp open http Unidentified Server 1.0
-- | http-server-header:
-- | Server:
-- |_ Unidentified Server 1.0
-- |_ http-server-header: Unidentified Server 1.0
--
--@xmloutput
--<table key="Server">
-- <elem>Unidentified Server 1.0</elem>
-- <elem>SomeOther Server</elem>
--</table>
author = "Daniel Miller"
@@ -95,8 +94,8 @@ action = function(host, port)
out_s[#out_s+1] = s == "" and "<empty>" or s
end
if next(out) then
table.sort(out)
table.sort(out_s)
table.insert(out_s, 1, "\nServer:")
return {Server=out}, table.concat(out_s, "\n ")
return out, ((#out > 1) and "\n " or "") .. table.concat(out_s, "\n ")
end
end