# File lib/net/ssh/buffer.rb, line 318 def write_string(*text) text.each do |string| s = string.to_s write_long(s.bytesize) write(s) end self end