]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/server.h
Introduce Server class
[user/henk/code/inspircd.git] / include / server.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #pragma once
21
22 class CoreExport Server : public classbase
23 {
24  protected:
25         /** The name of this server
26          */
27         const std::string name;
28
29         /** True if this server is ulined
30          */
31         bool uline;
32
33         /** True if this server is a silent uline, i.e. silent="true" in the uline block
34          */
35         bool silentuline;
36
37  public:
38         Server(const std::string& srvname)
39                 : name(srvname), uline(false), silentuline(false) { }
40
41         /**
42          * Returns the name of this server
43          * @return The name of this server, for example "irc.inspircd.org".
44          */
45         const std::string& GetName() const { return name; }
46
47         /**
48          * Checks whether this server is ulined
49          * @return True if this server is ulined, false otherwise.
50          */
51         bool IsULine() const { return uline; }
52
53         /**
54          * Checks whether this server is a silent uline
55          * Silent uline servers introduce, quit and oper up users without a snotice being generated.
56          * @return True if this server is a silent uline, false otherwise.
57          */
58         bool IsSilentULine() const { return silentuline; }
59 };