class Net::SSH::Buffer

def write_long(*n)

buffer object.
long (4-byte) integer. Does not alter the read position. Returns the
Writes each argument to the buffer as a network-byte-order-encoded
def write_long(*n)
  @content << n.pack("N*")
  self
end