added cmd_restart cmd_reload and cmd_die; added Socket.NoDelay setting to configurati...
[NeonServV5.git] / src / main.h
1 /* main.h - NeonServ v5.2
2  * Copyright (C) 2011  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17 #ifndef _main_h
18 #define _main_h
19 #include "../config.h"
20
21 #define NEONSERV_VERSION "5.2"
22 #define VERSION_PATCHLEVEL 414
23
24 #ifndef BOTWAR_ALERT_CHAN
25 #define BOTWAR_ALERT_CHAN NULL
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <ctype.h>
32 #ifdef WIN32
33 #include <windows.h>
34 #include <winsock2.h>
35 #else
36 #include <sys/types.h>
37 #include <sys/socket.h>
38 #include <netinet/in.h>
39 #include <netinet/tcp.h>
40 #include <arpa/inet.h>
41 #include <netdb.h>
42 #include <sys/wait.h>
43 #endif
44 #include <unistd.h>
45 #include <stdarg.h>
46 #include <sys/time.h>
47 #include <time.h>
48
49 #if __GNUC__
50 #define PRINTF_LIKE(M,N) __attribute__((format (printf, M, N)))
51 #else
52 #define PRINTF_LIKE(M,N)
53 #endif
54
55 #if __GNUC__ >= 2
56 #define UNUSED_ARG(ARG) ARG __attribute__((unused))
57 #elif defined(S_SPLINT_S)
58 #define UNUSED_ARG(ARG) /*@unused@*/ ARG
59 #define const /*@observer@*/ /*@temp@*/
60 #else
61 #define UNUSED_ARG(ARG) ARG
62 #endif
63
64 #define STRINGIFY_(x) #x
65 #define STRINGIFY(x) STRINGIFY_(x)
66  
67 #if defined(__GNUC__)
68 #if defined(__GNUC_PATCHLEVEL__)
69 #define COMPILER "GCC" " " STRINGIFY(__GNUC__) "." STRINGIFY(__GNUC_MINOR__) "." STRINGIFY(__GNUC_PATCHLEVEL__)
70 #else
71 #define COMPILER "GCC" " " STRINGIFY(__GNUC__) "." STRINGIFY(__GNUC_MINOR__)
72 #endif
73 #elif defined (__IMAGECRAFT__)
74 #define COMPILER "ICCAVR"
75 #else
76 #define COMPILER "Unknown"
77 #endif
78
79 #define SOCKET_SELECT_TIME    1
80 #define SOCKET_RECONNECT_TIME 20
81
82 #define NICKLEN         30
83 #define USERLEN         10
84 #define AUTHLEN         32
85 #define HOSTLEN         63
86 #define REALLEN         50
87 #define TOPICLEN        500
88 #define CHANNELLEN      200
89 #define MAXLEN          512
90 #define TRIGGERLEN      50
91 #define MAXNUMPARAMS    200 /* maximum number of parameters in one line */
92 #define MAXLANGUAGES    5
93 #define MAXMODES        6
94 #define INVITE_TIMEOUT  30
95 #define BOTWAR_DETECTION_TIME 7
96 #define BOTWAR_DETECTION_EVENTS 6
97 #define REWHO_TIMEOUT   10 /* wait 10 seconds before WHO an unauthed user again */
98
99 //valid nick chars
100 #define VALID_NICK_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890{|}~[\\]^-_`"
101 //the first char is a little bit different
102 //                              0        1         2         3         4         5          6
103 //                              1234567890123456789012345678901234567890123456789012345678 9012   62
104 #define VALID_NICK_CHARS_FIRST "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~[\\]^_`"
105 #define VALID_NICK_CHARS_FIRST_LEN 62
106
107 #define TEMPUSER_LIST_INDEX VALID_NICK_CHARS_FIRST_LEN
108
109 extern time_t start_time;
110 extern int statistics_enabled;
111
112 int stricmp (const char *s1, const char *s2);
113 int stricmplen (const char *s1, const char *s2, int len);
114
115 void restart_bot(int do_hard_restart);
116 void stop_bot();
117 void reload_config();
118
119 void statistics_update();
120
121 #endif