aboutsummaryrefslogtreecommitdiffstats
path: root/net/httpclient_listener.lua
diff options
context:
space:
mode:
Diffstat (limited to 'net/httpclient_listener.lua')
-rw-r--r--net/httpclient_listener.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/net/httpclient_listener.lua b/net/httpclient_listener.lua
index dfa25062..df571a58 100644
--- a/net/httpclient_listener.lua
+++ b/net/httpclient_listener.lua
@@ -7,6 +7,7 @@
--
local log = require "util.logger".init("httpclient_listener");
+local t_concat = table.concat;
local connlisteners_register = require "net.connlisteners".register;
@@ -15,6 +16,27 @@ local buffers = {}; -- Buffers of partial lines
local httpclient = { default_port = 80, default_mode = "*a" };
+function httpclient.onconnect(conn)
+ local req = requests[conn];
+ -- Send the request
+ local request_line = { req.method or "GET", " ", req.path, " HTTP/1.1\r\n" };
+ if req.query then
+ t_insert(request_line, 4, "?"..req.query);
+ end
+
+ conn:write(t_concat(request_line));
+ local t = { [2] = ": ", [4] = "\r\n" };
+ for k, v in pairs(req.headers) do
+ t[1], t[3] = k, v;
+ conn:write(t_concat(t));
+ end
+ conn:write("\r\n");
+
+ if body then
+ conn:write(body);
+ end
+end
+
function httpclient.onincoming(conn, data)
local request = requests[conn];