1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-30 03:19:02 +00:00

make timing a little more conservative

This commit is contained in:
fyodor
2008-09-15 19:05:00 +00:00
parent 3121ac156d
commit 2c00352b8e

View File

@@ -719,7 +719,7 @@ end
get_default_timeout = function()
local timeout = {[0] = 10000, 7000, 5000, 3000, 2000, 2000}
return timeout[nmap.timing_level()] or 3000
local timeout = {[0] = 10000, 7000, 5000, 4000, 4000, 4000}
return timeout[nmap.timing_level()] or 4000
end