class Async::HTTP::Protocol::HTTP10

def read_body(headers)

def read_body(headers)
	if body = super
		return body
	end
	
	# Technically, with HTTP/1.0, if no content-length is specified, we just need to read everything until the connection is closed.
	unless @persistent
		return Body::Remainder.new(@stream)
	end
end