From 3b5b0ba154a1f6b2cc7ade01df92c36a1454d4a4 Mon Sep 17 00:00:00 2001 From: dmiller Date: Wed, 15 Jan 2014 16:52:46 +0000 Subject: [PATCH] Note that HTTPS is supported by http NSE library --- nselib/http.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nselib/http.lua b/nselib/http.lua index 1c42a9297..88d16dfc5 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -7,6 +7,9 @@ -- can be used. These functions do what one would expect. The get_url -- helper function can be used to parse and retrieve a full URL. -- +-- HTTPS support is transparent. The library uses comm.tryssl to +-- determine whether SSL is required for a request. +-- -- These functions return a table of values, including: -- * status-line - A string representing the status, such as "HTTP/1.1 200 OK". In case of an error, a description will be provided in this line. -- * status: The HTTP status value; for example, "200". If an error occurs during a request, then this value is going to be nil.