module Protocol::HTTP::Body::Reader

def each(&block)

Other tags:
    Yield: - read chunks from the body.
def each(&block)
	if @body
		@body.each(&block)
		@body = nil
	end
end