summaryrefslogtreecommitdiff
path: root/lib/net
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net')
-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