class Protocol::HTTP::Body::Buffered

def read

def read
	if chunk = @chunks[@index]
		@index += 1
		
		return chunk.dup
	end
end