class Async::HTTP::Protocol::HTTP11

def read_request_body(headers)

def read_request_body(headers)
	# 6.  If this is a request message and none of the above are true, then
	# the message body length is zero (no message body is present).
	if body = read_body(headers)
		return body
	end
end