From 8a25f09d6c9dfd55644d8b3afb750cdc76c5bc7e Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 13 Aug 2007 04:23:42 +0000 Subject: * lib/open-uri.rb: make ftp passive mode to avoid NAT problem. [ruby-dev:31377] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/open-uri.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/open-uri.rb') diff --git a/lib/open-uri.rb b/lib/open-uri.rb index 37d22a1572..a38d596562 100644 --- a/lib/open-uri.rb +++ b/lib/open-uri.rb @@ -743,6 +743,7 @@ module URI # The access sequence is defined by RFC 1738 ftp = Net::FTP.open(self.host) + ftp.passive = true # todo: extract user/passwd from .netrc. user = 'anonymous' passwd = nil -- cgit v1.2.3