diff --git a/nselib/http.lua b/nselib/http.lua index 360fa1a07..b99addf91 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -20,7 +20,7 @@ -- -- If a script is planning on making a lot of requests, the pipelining functions can -- be helpful. pipeline_add queues requests in a table, and --- pipeline performs the requests, returning the results as an array, +-- pipeline_go performs the requests, returning the results as an array, -- with the responses in the same order as the queries were added. As a simple example: -- -- -- Start by defining the 'all' variable as nil @@ -2611,7 +2611,7 @@ end ---Check if the response variable contains the given text. -- -- Response variable could be a return from a http.get, http.post, --- http.pipeline, etc. The text can be: +-- http.pipeline_go, etc. The text can be: -- * Part of a header ('content-type', 'text/html', '200 OK', etc) -- * An entire header ('Content-type: text/html', 'Content-length: 123', etc) -- * Part of the body