class Net::SSH::Buffer
def write_long(*n)
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
def write_long(*n) @content << n.pack("N*") self end