From 2c00352b8e4c0f21aaaa24a7457ff3186e2a7922 Mon Sep 17 00:00:00 2001 From: fyodor Date: Mon, 15 Sep 2008 19:05:00 +0000 Subject: [PATCH] make timing a little more conservative --- nselib/dns.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nselib/dns.lua b/nselib/dns.lua index ecc0a0b44..c022cf8a8 100644 --- a/nselib/dns.lua +++ b/nselib/dns.lua @@ -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