class Net::SSH::Buffer

def write(*data)

read position. Returns the buffer object.
Writes the given data literally into the string. Does not alter the
def write(*data)
  data.each { |datum| @content << datum.dup.force_encoding('BINARY') }
  self
end