class Net::SSH::Buffer

def read_byte

the end of the buffer.
Read and return the next byte in the buffer. Returns nil if called at
def read_byte
  b = read(1) or return nil
  b.getbyte(0)
end