aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-11-14 11:20:20 -1000
committerAndre Arko <andre@arko.net>2011-11-14 11:20:20 -1000
commit00a0a4ddebe0160f851d28e29d5fb7e8e7a2a5dc (patch)
treee0c0d1783054c51611598d9a40c7ffa402b2b4f8 /actionpack
parent9fa329b7544b15cdf5751d518e380abc82468df0 (diff)
downloadrails-00a0a4ddebe0160f851d28e29d5fb7e8e7a2a5dc.tar.gz
rails-00a0a4ddebe0160f851d28e29d5fb7e8e7a2a5dc.tar.bz2
rails-00a0a4ddebe0160f851d28e29d5fb7e8e7a2a5dc.zip
cleaner names
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/middleware/remote_ip.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/remote_ip.rb b/actionpack/lib/action_dispatch/middleware/remote_ip.rb
index 58e25aed5a..446fcce823 100644
--- a/actionpack/lib/action_dispatch/middleware/remote_ip.rb
+++ b/actionpack/lib/action_dispatch/middleware/remote_ip.rb
@@ -13,16 +13,16 @@ module ActionDispatch
)\.
}x
- attr_reader :check_ip_spoofing, :trusted_proxies
+ attr_reader :check_ip, :proxies
def initialize(app, check_ip_spoofing = true, custom_proxies = nil)
@app = app
- @check_ip_spoofing = check_ip_spoofing
+ @check_ip = check_ip_spoofing
if custom_proxies
custom_regexp = Regexp.new(custom_proxies)
- @trusted_proxies = Regexp.union(TRUSTED_PROXIES, custom_regexp)
+ @proxies = Regexp.union(TRUSTED_PROXIES, custom_regexp)
else
- @trusted_proxies = TRUSTED_PROXIES
+ @proxies = TRUSTED_PROXIES
end
end
@@ -47,7 +47,7 @@ module ActionDispatch
forwarded_ips = ips_from('HTTP_X_FORWARDED_FOR')
remote_addrs = ips_from('REMOTE_ADDR')
- check_ip = client_ip && @middleware.check_ip_spoofing
+ check_ip = client_ip && @middleware.check_ip
if check_ip && !forwarded_ips.include?(client_ip)
# We don't know which came from the proxy, and which from the user
raise IpSpoofAttackError, "IP spoofing attack?!" \
@@ -62,7 +62,7 @@ module ActionDispatch
def ips_from(header)
ips = @env[header] ? @env[header].strip.split(/[,\s]+/) : []
- ips.reject{|ip| ip =~ @middleware.trusted_proxies }
+ ips.reject{|ip| ip =~ @middleware.proxies }
end
end