class Async::HTTP::Protocol::HTTP11

def send_request(authority, method, path, headers = {}, body = [])

Client request.
def send_request(authority, method, path, headers = {}, body = [])
	Async.logger.debug(self) {"#{method} #{path} #{headers.inspect}"}
	
	write_request(authority, method, path, version, headers, body)
	
	return Response.new(*read_response)
rescue EOFError
	return nil
end