class Protocol::HTTP::Body::Buffered

def rewind

Rewind the body to the beginning, causing a subsequent read to return the first chunk.
def rewind
	return false unless @chunks
	
	@index = 0
	
	return true
end