summaryrefslogtreecommitdiff
path: root/lib/net/protocol.rb
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-06 09:23:43 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-06 09:23:43 +0000
commit0d63d4eee61e0e9c1b3ae8a0a11c0043d36abf33 (patch)
treee6e1f43c775636c0634b137b5e031ac0c6636665 /lib/net/protocol.rb
parente56d34001fd924a4b62f0c846f55174bb8c6d3c8 (diff)
Revert "net/protocol: use binary string buffers"
Oops, not ready, yet (will work on this tomorrow :x). This reverts commit r61638 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/protocol.rb')
-rw-r--r--lib/net/protocol.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
index e1586923c8..45da560062 100644
--- a/lib/net/protocol.rb
+++ b/lib/net/protocol.rb
@@ -84,7 +84,7 @@ module Net # :nodoc:
@read_timeout = read_timeout
@continue_timeout = continue_timeout
@debug_output = debug_output
- @rbuf = ''.b
+ @rbuf = ''.dup
end
attr_reader :io
@@ -114,7 +114,7 @@ module Net # :nodoc:
public
- def read(len, dest = ''.b, ignore_eof = false)
+ def read(len, dest = ''.dup, ignore_eof = false)
LOG "reading #{len} bytes..."
read_bytes = 0
begin
@@ -134,7 +134,7 @@ module Net # :nodoc:
dest
end
- def read_all(dest = ''.b)
+ def read_all(dest = ''.dup)
LOG 'reading all...'
read_bytes = 0
begin
@@ -193,7 +193,7 @@ module Net # :nodoc:
def rbuf_consume(len)
if len == @rbuf.size
s = @rbuf
- @rbuf = ''.b
+ @rbuf = ''.dup
else
s = @rbuf.slice!(0, len)
end
@@ -340,7 +340,7 @@ module Net # :nodoc:
end
def using_each_crlf_line
- @wbuf = ''.b
+ @wbuf = ''.dup
yield
if not @wbuf.empty? # unterminated last line
write0 dot_stuff(@wbuf.chomp) + "\r\n"