]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
Fixed to not allow :Abc NICK Abc, where the case of the old and new nick are *identical*
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 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 /*
58 flags for use with WriteMode
59
60 #define WM_AND 1
61 #define WM_OR 2
62
63 flags for use with OnUserPreMessage and OnUserPreNotice
64
65 #define TYPE_USER 1
66 #define TYPE_CHANNEL 2
67 #define TYPE_SERVER 3
68
69 #define IS_LOCAL(x) (x->fd > -1)
70 #define IS_REMOTE(x) (x->fd < 0)
71 #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER)
72 */
73
74 class serverstats
75 {
76   public:
77         int statsAccept;
78         int statsRefused;
79         int statsUnknown;
80         int statsCollisions;
81         int statsDns;
82         int statsDnsGood;
83         int statsDnsBad;
84         int statsConnects;
85         int statsSent;
86         int statsRecv;
87         int BoundPortCount;
88
89         serverstats()
90         {
91                 statsAccept = statsRefused = statsUnknown = 0;
92                 statsCollisions = statsDns = statsDnsGood = 0;
93                 statsDnsBad = statsConnects = statsSent = statsRecv = 0;
94                 BoundPortCount = 0;
95         }
96 };
97
98
99 class InspIRCd
100 {
101
102  private:
103         char MODERR[MAXBUF];
104         void erase_factory(int j);
105         void erase_module(int j);       
106
107  public:
108         time_t startup_time;
109         ModeParser* ModeGrok;
110         CommandParser* Parser;
111         SocketEngine* SE;
112         serverstats* stats;
113
114         void MakeLowerMap();
115         std::string GetRevision();
116         std::string GetVersionString();
117         char* ModuleError();
118         bool LoadModule(const char* filename);
119         bool UnloadModule(const char* filename);
120         InspIRCd(int argc, char** argv);
121         int Run();
122
123 };
124
125 /* userrec optimization stuff */
126 void AddServerName(std::string servername);
127 const char* FindServerNamePtr(std::string servername);
128
129 #endif