class Net::SSH::Buffer

def write_mstring(*text)

Might alter arguments see write_moved
Does not alter the read position. Returns the buffer object.
string is prefixed by its length, encoded as a 4-byte long integer.
Writes each argument to the buffer as an SSH2-encoded string. Each
def write_mstring(*text)
  text.each do |string|
    s = string.to_s
    write_long(s.bytesize)
    write_moved(s)
  end
  self
end