diff options
author | Kim Alvefur <zash@zash.se> | 2021-02-27 21:37:16 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-02-27 21:37:16 +0100 |
commit | 2acba6238860aaf3e323b12ddcd6d89d6644b486 (patch) | |
tree | 71f368914e78246814265e0cf28e168908db1af0 /plugins | |
parent | d8bcee69f3b287f8948604e72f76cf543cac33a0 (diff) | |
download | prosody-2acba6238860aaf3e323b12ddcd6d89d6644b486.tar.gz prosody-2acba6238860aaf3e323b12ddcd6d89d6644b486.zip |
net.http.server: Set request.ip so mod_http doesn't have to
Because it already sets request.secure, which depends on the connection,
just like the IP, so it makes sense to do both in the same place.
Dealing with proxies can be left to mod_http for now, but maybe it could
move into some util some day?
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index b9a76c90..d81f4ab7 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -260,7 +260,7 @@ local function is_trusted_proxy(ip) end local function get_ip_from_request(request) - local ip = request.conn:ip(); + local ip = request.ip; local forwarded_for = request.headers.x_forwarded_for; if forwarded_for and is_trusted_proxy(ip) then -- luacheck: ignore 631 |