]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/resolvers.h
m_spanningtree Remove unneeded #includes
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / resolvers.h
index 5d4386c4b2c276f5931fb34d244e292da27aafc8..bcdf38625b9a4505fe0c813c5fd0ed98accf0b32 100644 (file)
@@ -1,22 +1,26 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __RESOLVERS__H__
-#define __RESOLVERS__H__
 
-#include "socket.h"
+#pragma once
+
 #include "inspircd.h"
-#include "xline.h"
 
 #include "utils.h"
 #include "link.h"
@@ -32,28 +36,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.
@@ -75,5 +60,3 @@ class ServernameResolver : public Resolver
        void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached);
        void OnError(ResolverError e, const std::string &errormessage);
 };
-
-#endif