]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
Nothing to see here, nothing, at all.
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __INSPIRCD_H__
18 #define __INSPIRCD_H__
19
20 #include "inspircd_config.h"
21 #include <string>
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <signal.h>
25 #include <time.h>
26 #include <netdb.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <sys/types.h>
30
31 #ifndef _LINUX_C_LIB_VERSION
32 #include <sys/socket.h>
33 #include <sys/stat.h>
34 #include <netinet/in.h>
35 #endif
36
37 #include <arpa/inet.h>
38 #include <string>
39 #include <deque>
40
41 #include "inspircd_io.h"
42 #include "users.h"
43 #include "channels.h"
44 #include "socket.h"
45 #include "mode.h"
46 #include "socketengine.h"
47 #include "command_parse.h"
48
49 // some misc defines
50
51 #define ERROR -1
52 #define TRUE 1
53 #define FALSE 0
54 #define MAXSOCKS 64
55 #define MAXCOMMAND 32
56
57 #define ETIREDGERBILS EAGAIN
58
59 /*
60 flags for use with WriteMode
61
62 #define WM_AND 1
63 #define WM_OR 2
64
65 flags for use with OnUserPreMessage and OnUserPreNotice
66
67 #define TYPE_USER 1
68 #define TYPE_CHANNEL 2
69 #define TYPE_SERVER 3
70
71 #define IS_LOCAL(x) (x->fd > -1)
72 #define IS_REMOTE(x) (x->fd < 0)
73 #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER)
74 */
75
76 class serverstats
77 {
78   public:
79         int statsAccept;
80         int statsRefused;
81         int statsUnknown;
82         int statsCollisions;
83         int statsDns;
84         int statsDnsGood;
85         int statsDnsBad;
86         int statsConnects;
87         int statsSent;
88         int statsRecv;
89         int BoundPortCount;
90
91         serverstats()
92         {
93                 statsAccept = statsRefused = statsUnknown = 0;
94                 statsCollisions = statsDns = statsDnsGood = 0;
95                 statsDnsBad = statsConnects = statsSent = statsRecv = 0;
96                 BoundPortCount = 0;
97         }
98 };
99
100
101 class InspIRCd
102 {
103
104  private:
105         char MODERR[MAXBUF];
106         void erase_factory(int j);
107         void erase_module(int j);
108         void BuildISupport();
109         void MoveTo(std::string modulename,int slot);
110
111  public:
112         time_t startup_time;
113         ModeParser* ModeGrok;
114         CommandParser* Parser;
115         SocketEngine* SE;
116         serverstats* stats;
117
118         void MakeLowerMap();
119         std::string GetRevision();
120         std::string GetVersionString();
121         char* ModuleError();
122         bool LoadModule(const char* filename);
123         bool UnloadModule(const char* filename);
124         void MoveToLast(std::string modulename);
125         void MoveToFirst(std::string modulename);
126         void MoveAfter(std::string modulename, std::string after);
127         void MoveBefore(std::string modulename, std::string before);
128         InspIRCd(int argc, char** argv);
129         int Run();
130
131 };
132
133 /* userrec optimization stuff */
134 void AddServerName(std::string servername);
135 const char* FindServerNamePtr(std::string servername);
136 bool FindServerName(std::string servername);
137
138 #endif