summaryrefslogtreecommitdiff
path: root/lib/net/ftp.rb
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-08-17 03:14:22 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-08-17 03:14:22 +0000
commit468df0e2d45dc4447019fb9dc15747dbf008f938 (patch)
treed298b33851aaf473430dc9effccd7b7638d33910 /lib/net/ftp.rb
parent79c2d60971501ea6cb8304a9c860bac0bc2bee94 (diff)
Added default blocksize to Net::FTP#getbinaryfile
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/ftp.rb')
-rw-r--r--lib/net/ftp.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index a63acec1d8..ab10853bed 100644
--- a/lib/net/ftp.rb
+++ b/lib/net/ftp.rb
@@ -25,6 +25,8 @@ module Net
FTP_PORT = 21
CRLF = "\r\n"
+
+ DEFAULT_BLOCKSIZE = 4096
attr_accessor :passive, :return_code, :debug_mode, :resume
attr_reader :welcome, :lastresp
@@ -338,7 +340,8 @@ module Net
end
end
- def getbinaryfile(remotefile, localfile, blocksize, callback = nil)
+ def getbinaryfile(remotefile, localfile,
+ blocksize = DEFAULT_BLOCKSIZE, callback = nil)
if iterator?
callback = Proc.new
end
@@ -378,7 +381,8 @@ module Net
end
end
- def putbinaryfile(localfile, remotefile, blocksize = 4096, callback = nil)
+ def putbinaryfile(localfile, remotefile,
+ blocksize = DEFAULT_BLOCKSIZE, callback = nil)
if iterator?
callback = Proc.new
end