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