Merge 0.12->trunk

This commit is contained in:
Matthew Wild 2023-02-16 16:00:07 +00:00
commit 424a334450

View file

@ -428,6 +428,10 @@ end
function _M.set_option(name, value)
options[name] = value;
end
function _M.get_request_from_conn(conn)
local response = conn and conn._http_open_response;
return response and response.request or nil;
end
_M.listener = listener;
_M.codes = codes;