]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/resolvers.h
Lower the acceptable drift for clocks on link.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / resolvers.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6  *
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.
10  *
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
14  * details.
15  *
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/>.
18  */
19
20
21 #pragma once
22
23 #include "inspircd.h"
24 #include "modules/dns.h"
25
26 #include "utils.h"
27 #include "link.h"
28
29 /** Handle resolving of server IPs for the cache
30  */
31 class SecurityIPResolver : public DNS::Request
32 {
33  private:
34         reference<Link> MyLink;
35         Module* mine;
36         std::string host;
37         DNS::QueryType query;
38  public:
39         SecurityIPResolver(Module* me, DNS::Manager* mgr, const std::string& hostname, Link* x, DNS::QueryType qt);
40         void OnLookupComplete(const DNS::Query *r) CXX11_OVERRIDE;
41         void OnError(const DNS::Query *q) CXX11_OVERRIDE;
42 };
43
44 /** This class is used to resolve server hostnames during /connect and autoconnect.
45  * As of 1.1, the resolver system is seperated out from BufferedSocket, so we must do this
46  * resolver step first ourselves if we need it. This is totally nonblocking, and will
47  * callback to OnLookupComplete or OnError when completed. Once it has completed we
48  * will have an IP address which we can then use to continue our connection.
49  */
50 class ServernameResolver : public DNS::Request
51 {
52  private:
53         DNS::QueryType query;
54         std::string host;
55         reference<Link> MyLink;
56         reference<Autoconnect> myautoconnect;
57  public:
58         ServernameResolver(DNS::Manager* mgr, const std::string& hostname, Link* x, DNS::QueryType qt, Autoconnect* myac);
59         void OnLookupComplete(const DNS::Query *r) CXX11_OVERRIDE;
60         void OnError(const DNS::Query *q) CXX11_OVERRIDE;
61 };