module Protocol::HTTP::Body::Reader

def read

@returns [String] the entire body as a string.

Reads the entire request/response body.
def read
	if @body
		buffer = @body.join
		@body = nil
		
		return buffer
	end
end