# HG changeset patch # User Matthew Wild # Date 1266548314 0 # Node ID 9dbe9acf82e8da6d52532529def3ea28ebb879e1 # Parent 82f3820758ede5b0fdbf331d0dbb5b35d624bb08 net.http: Port commit 2f235c57d713 to net.http to fix headers in responses (thanks dersd) diff -r 82f3820758ed -r 9dbe9acf82e8 net/http.lua --- a/net/http.lua Thu Feb 18 14:28:52 2010 +0500 +++ b/net/http.lua Fri Feb 19 02:58:34 2010 +0000 @@ -73,22 +73,31 @@ elseif request.state == "headers" then print("Reading headers...") local pos = startpos; - local headers = request.responseheaders or {}; + local headers, headers_complete = request.responseheaders; + if not headers then + headers = {}; + request.responseheaders = headers; + end for line in data:sub(startpos, -1):gmatch("(.-)\r\n") do startpos = startpos + #line + 2; local k, v = line:match("(%S+): (.+)"); if k and v then headers[k:lower()] = v; - print("Header: "..k:lower().." = "..v); + --print("Header: "..k:lower().." = "..v); elseif #line == 0 then - request.responseheaders = headers; + headers_complete = true; break; else print("Unhandled header line: "..line); end end + if not headers_complete then return; end -- Reached the end of the headers - request.state = "body"; + if not expectbody(request, request.code) then + request.callback(nil, request.code, request); + return; + end + request.state = "body"; if #data > startpos then return request_reader(request, data, startpos); end @@ -102,7 +111,7 @@ request.code, request.responseversion = code, http; - if request.onlystatus or not expectbody(request, code) then + if request.onlystatus then if request.callback then request.callback(nil, code, request); end