]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
m_spanningtree Move SecurityIPResolver code to resolvers.cpp from resolvers.h
authorattilamolnar <attilamolnar@hush.com>
Mon, 11 Jun 2012 13:05:07 +0000 (15:05 +0200)
committerattilamolnar <attilamolnar@hush.com>
Mon, 11 Jun 2012 13:05:07 +0000 (15:05 +0200)
src/modules/m_spanningtree/resolvers.cpp
src/modules/m_spanningtree/resolvers.h

index ae951bd3855a9da90e2bc6dbc34b2264ea041108..be185a28fbfa0c09bcc319d5f36532af916cfd14 100644 (file)
@@ -80,3 +80,25 @@ void ServernameResolver::OnError(ResolverError e, const std::string &errormessag
        Utils->Creator->ConnectServer(myautoconnect, false);
 }
 
+SecurityIPResolver::SecurityIPResolver(Module* me, SpanningTreeUtilities* U, const std::string &hostname, Link* x, bool &cached, QueryType qt)
+               : Resolver(hostname, qt, cached, me), MyLink(x), Utils(U), mine(me), host(hostname), query(qt)
+{
+}
+
+void SecurityIPResolver::OnLookupComplete(const std::string &result, unsigned int ttl, bool cached)
+{
+       Utils->ValidIPs.push_back(result);
+}
+
+void SecurityIPResolver::OnError(ResolverError e, const std::string &errormessage)
+{
+       if (query == DNS_QUERY_AAAA)
+       {
+               bool cached;
+               SecurityIPResolver* res = new SecurityIPResolver(mine, Utils, host, MyLink, cached, DNS_QUERY_A);
+               ServerInstance->AddResolver(res, cached);
+               return;
+       }
+       ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"Could not resolve IP associated with Link '%s': %s",
+               MyLink->Name.c_str(),errormessage.c_str());
+}
index cb3b385162706e0a18a3f21ed9c228bd07bdcde1..65b9e72495db121e2a5359e8c51c1110404a612c 100644 (file)
@@ -39,28 +39,9 @@ class SecurityIPResolver : public Resolver
        std::string host;
        QueryType query;
  public:
-       SecurityIPResolver(Module* me, SpanningTreeUtilities* U, const std::string &hostname, Link* x, bool &cached, QueryType qt)
-               : Resolver(hostname, qt, cached, me), MyLink(x), Utils(U), mine(me), host(hostname), query(qt)
-       {
-       }
-
-       void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached)
-       {
-               Utils->ValidIPs.push_back(result);
-       }
-
-       void OnError(ResolverError e, const std::string &errormessage)
-       {
-               if (query == DNS_QUERY_AAAA)
-               {
-                       bool cached;
-                       SecurityIPResolver* res = new SecurityIPResolver(mine, Utils, host, MyLink, cached, DNS_QUERY_A);
-                       ServerInstance->AddResolver(res, cached);
-                       return;
-               }
-               ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"Could not resolve IP associated with Link '%s': %s",
-                       MyLink->Name.c_str(),errormessage.c_str());
-       }
+       SecurityIPResolver(Module* me, SpanningTreeUtilities* U, const std::string &hostname, Link* x, bool &cached, QueryType qt);
+       void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached);
+       void OnError(ResolverError e, const std::string &errormessage);
 };
 
 /** This class is used to resolve server hostnames during /connect and autoconnect.