Merge 0278463377c4fe8717539549535b29b4296f2b2a into 58c76080a0c654de906de9f554e2de45b1784929

This commit is contained in:
johnd0e 2025-03-10 16:21:41 +00:00 committed by GitHub
commit 9573b005df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -368,8 +368,16 @@ end
local code, status = h:receivestatusline()
-- if it is an HTTP/0.9 server, simply get the body and we are done
if not code then
h:receive09body(status, nreqt.sink, nreqt.step)
return 1, 200
if nreqt.sink then
h:receive09body(status, nreqt.sink, nreqt.step)
return 1, 200
else
return socket.protect(function(sink, step)
if sink then
return h:receive09body(status, sink, step or nreqt.step)
end
end), 200
end
elseif code == 408 then
return 1, code
end
@ -387,11 +395,23 @@ end
return tredirect(reqt, headers.location)
end
-- here we are finally done
local receivebody
if shouldreceivebody(nreqt, code) then
h:receivebody(headers, nreqt.sink, nreqt.step)
if nreqt.sink then
h:receivebody(headers, nreqt.sink, nreqt.step)
else
receivebody = socket.protect(function(sink, step)
local res, err
if sink then
res, err = h:receivebody(headers, sink, step or nreqt.step)
end
h:close()
return res, err
end)
end
end
h:close()
return 1, code, headers, status
if not receivebody then h:close() end
return receivebody or 1, code, headers, status
end
-- turns an url and a body into a generic request