class Net::SSH::Buffer

def clear!

0.
Resets the buffer, making it empty. Also, resets the read position to
def clear!
  @content = String.new
  @position = 0
end