module Protocol::HTTP::Body::Reader

def each(&block)

@yields {|chunk| ...} chunks from the body.

Read chunks from the body.
def each(&block)
	if @body
		@body.each(&block)
		@body = nil
	end
end