2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5 * Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
7 * This file is part of InspIRCd. InspIRCd is free software: you can
8 * redistribute it and/or modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation, version 2.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef M_SPANNINGTREE_RESOLVERS_H
22 #define M_SPANNINGTREE_RESOLVERS_H
31 /** Handle resolving of server IPs for the cache
33 class SecurityIPResolver : public Resolver
36 reference<Link> MyLink;
37 SpanningTreeUtilities* Utils;
42 SecurityIPResolver(Module* me, SpanningTreeUtilities* U, const std::string &hostname, Link* x, bool &cached, QueryType qt);
43 void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached);
44 void OnError(ResolverError e, const std::string &errormessage);
47 /** This class is used to resolve server hostnames during /connect and autoconnect.
48 * As of 1.1, the resolver system is seperated out from BufferedSocket, so we must do this
49 * resolver step first ourselves if we need it. This is totally nonblocking, and will
50 * callback to OnLookupComplete or OnError when completed. Once it has completed we
51 * will have an IP address which we can then use to continue our connection.
53 class ServernameResolver : public Resolver
56 SpanningTreeUtilities* Utils;
59 reference<Link> MyLink;
60 reference<Autoconnect> myautoconnect;
62 ServernameResolver(SpanningTreeUtilities* Util, const std::string &hostname, Link* x, bool &cached, QueryType qt, Autoconnect* myac);
63 void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached);
64 void OnError(ResolverError e, const std::string &errormessage);