class Net::SSH::Buffer
def write_bignum(*n)
checking is done to ensure that the arguments are, in fact, bignums.
Writes each argument to the buffer as a bignum (SSH2-style). No
def write_bignum(*n) @content << n.map { |b| b.to_ssh }.join self end
def write_bignum(*n) @content << n.map { |b| b.to_ssh }.join self end