aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-13 08:31:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-13 08:31:12 +0000
commit1ee9cad027e910b36bd4191ef2339d02e6711a32 (patch)
treefe8f994ee21b1d14a394208c6d9c23a292b7f687 /lib
parent423d042371d0402071c309dc403ea2701600a98b (diff)
downloadruby-1ee9cad027e910b36bd4191ef2339d02e6711a32.tar.gz
CIDR in no_proxy
* lib/uri/generic.rb (URI::Generic#find_proxy): support CIDR in no_proxy. [ruby-core:73769] [Feature#12062] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/uri/generic.rb15
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb
index f2a2d567e3..3c4cb6e530 100644
--- a/lib/uri/generic.rb
+++ b/lib/uri/generic.rb
@@ -1547,9 +1547,18 @@ module URI
name = 'no_proxy'
if no_proxy = ENV[name] || ENV[name.upcase]
no_proxy.scan(/(?!\.)([^:,\s]+)(?::(\d+))?/) {|host, port|
- if /(\A|\.)#{Regexp.quote host}\z/i =~ self.host &&
- (!port || self.port == port.to_i)
- return nil
+ if (!port || self.port == port.to_i)
+ if /(\A|\.)#{Regexp.quote host}\z/i =~ self.host
+ return nil
+ else
+ require 'ipaddr'
+ return nil if
+ begin
+ IPAddr.new(host)
+ rescue IPAddr::InvalidAddressError
+ next
+ end.include?(self.host)
+ end
end
}
end