class Net::SSH::Buffer

def write_byte(*n)

position. Returns the buffer object.
Writes each argument to the buffer as a byte. Does not alter the read
def write_byte(*n)
  n.each { |b| @content << b.chr }
  self
end