class Falcon::Controller::Proxy

def host_context(socket, hostname)

def host_context(socket, hostname)
	if host = @hosts[hostname]
		Async.logger.debug(self) {"Resolving #{hostname} -> #{host}"}
		
		socket.hostname = hostname
		
		return host.ssl_context
	else
		Async.logger.warn(self) {"Unable to resolve #{hostname}!"}
		
		return nil
	end
end