# HG changeset patch # User Kim Alvefur # Date 1613655278 -3600 # Node ID e40ba204c612f6d648e4d8f62f66146078785b62 # Parent 8603011e51fea361f50c179f5a9ecca4d6ea50d9 mod_http: Fix trusted proxies check (thanks buildbot) is_trusted_proxy() is only in trunk, I dun goofed when I rebased 8603011e51fe from trunk. diff -r 8603011e51fe -r e40ba204c612 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