From bc1e51eb8357bcb377f6010b79bd15607286302c Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 16 Feb 2023 15:59:26 +0000 Subject: net.http.server: Add new API to get HTTP request from a connection This information is sometimes necessary in the context where we have a connection that we know (or believe to be) associated with an incoming HTTP request. For example, it can be used to retrieve the IP address of a request (which may differ from the IP address of the connection, due to X-Forwarded-For and co). Thanks to the Jitsi team for highlighting this gap in the API. --- net/http/server.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'net/http') diff --git a/net/http/server.lua b/net/http/server.lua index 4ebf96a1..43e6bc9f 100644 --- a/net/http/server.lua +++ b/net/http/server.lua @@ -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; -- cgit v1.2.3