From 468df0e2d45dc4447019fb9dc15747dbf008f938 Mon Sep 17 00:00:00 2001 From: shugo Date: Thu, 17 Aug 2000 03:14:22 +0000 Subject: [PATCH] Added default blocksize to Net::FTP#getbinaryfile git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/ftp.rb | 8 ++++++-- 1 file 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