From 029b66e93309de112f3f63919503be8ddc18c604 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sat, 20 Aug 2011 15:10:04 -0400 Subject: net.http, httpclient_listener: Move request sending from net.http to onconnect() handler, and add support for HTTPS requests to net.http --- net/httpclient_listener.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'net/httpclient_listener.lua') 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]; -- cgit v1.2.3