mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_http: Skip IP resolution in non-proxied case
Skips doing the whole get_ip_from_request() dance if the request isn't from a proxy at all, even if the client sent the header for some reason.
This commit is contained in:
parent
269069faa6
commit
80116bf0e3
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ end
|
|||
|
||||
module:wrap_object_event(server._events, false, function (handlers, event_name, event_data)
|
||||
local request = event_data.request;
|
||||
if request then
|
||||
if request and is_trusted_proxy(request.conn:ip()) then
|
||||
-- Not included in eg http-error events
|
||||
request.ip = get_ip_from_request(request);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue