mirror of
https://github.com/nmap/nmap.git
synced 2025-12-31 03:49:01 +00:00
Typo fix: reponses -> responses
This commit is contained in:
@@ -1230,10 +1230,10 @@ pipeline = function(host, port, allReqs)
|
||||
socket:close()
|
||||
|
||||
if count == 0 then
|
||||
stdnse.print_debug("Received 0 of %d expected reponses.\nGiving up on pipeline.", limit);
|
||||
stdnse.print_debug("Received 0 of %d expected responses.\nGiving up on pipeline.", limit);
|
||||
break
|
||||
elseif count < limit then
|
||||
stdnse.print_debug("Received only %d of %d expected reponses.\nDecreasing max pipelined requests to %d.", count, limit, count)
|
||||
stdnse.print_debug("Received only %d of %d expected responses.\nDecreasing max pipelined requests to %d.", count, limit, count)
|
||||
limit = count
|
||||
end
|
||||
end
|
||||
|
||||
@@ -243,7 +243,7 @@ end
|
||||
|
||||
-- An iterator that breaks up a concatentation of responses. In DNS over TCP,
|
||||
-- each response is prefixed by a two-byte length (RFC 1035 section 4.2.2).
|
||||
-- Reponses returned by this iterator include the two-byte length prefix.
|
||||
-- Responses returned by this iterator include the two-byte length prefix.
|
||||
function responses_iter(data)
|
||||
local offset = 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user