mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Typo fix: reponses -> responses
This commit is contained in:
parent
b1e62c573f
commit
d85c8d3603
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue