# File lib/net/ssh/buffer.rb, line 171
171:     def read(count=nil)
172:       count ||= length
173:       count = length - @position if @position + count > length
174:       @position += count
175:       @content[@position-count, count]
176:     end