mod_http: Fix trusted proxies check (thanks buildbot) 0.11
authorKim Alvefur <zash@zash.se>
Thu, 18 Feb 2021 14:34:38 +0100
branch0.11
changeset 11390 e40ba204c612
parent 11385 8603011e51fe
child 11391 4f97b33e2596
child 11411 8d6e013377fa
mod_http: Fix trusted proxies check (thanks buildbot) is_trusted_proxy() is only in trunk, I dun goofed when I rebased 8603011e51fe from trunk.
plugins/mod_http.lua
--- a/plugins/mod_http.lua	Thu Feb 18 12:00:00 2021 +0100
+++ b/plugins/mod_http.lua	Thu Feb 18 14:34:38 2021 +0100
@@ -174,7 +174,7 @@
 
 module:wrap_object_event(server._events, false, function (handlers, event_name, event_data)
 	local request = event_data.request;
-	if request and is_trusted_proxy(request.conn:ip()) then
+	if request and trusted_proxies[request.conn:ip()] then
 		-- Not included in eg http-error events
 		request.ip = get_ip_from_request(request);
 	end