added OpenSSL handler
[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 <arpa/inet.h>
40 #include <netdb.h>
41 #include <sys/wait.h>
42 #endif
43 #include <unistd.h>
44 #include <stdarg.h>
45 #include <sys/time.h>
46 #include <time.h>
47
48 #if __GNUC__
49 #define PRINTF_LIKE(M,N) __attribute__((format (printf, M, N)))
50 #else
51 #define PRINTF_LIKE(M,N)
52 #endif
53
54 #if __GNUC__ >= 2
55 #define UNUSED_ARG(ARG) ARG __attribute__((unused))
56 #elif defined(S_SPLINT_S)
57 #define UNUSED_ARG(ARG) /*@unused@*/ ARG
58 #define const /*@observer@*/ /*@temp@*/
59 #else
60 #define UNUSED_ARG(ARG) ARG
61 #endif
62
63 #define STRINGIFY_(x) #x
64 #define STRINGIFY(x) STRINGIFY_(x)
65  
66 #if defined(__GNUC__)
67 #if defined(__GNUC_PATCHLEVEL__)
68 #define COMPILER "GCC" " " STRINGIFY(__GNUC__) "." STRINGIFY(__GNUC_MINOR__) "." STRINGIFY(__GNUC_PATCHLEVEL__)
69 #else
70 #define COMPILER "GCC" " " STRINGIFY(__GNUC__) "." STRINGIFY(__GNUC_MINOR__)
71 #endif
72 #elif defined (__IMAGECRAFT__)
73 #define COMPILER "ICCAVR"
74 #else
75 #define COMPILER "Unknown"
76 #endif
77
78 #define SOCKET_SELECT_TIME    1
79 #define SOCKET_RECONNECT_TIME 20
80
81 #define NICKLEN         30
82 #define USERLEN         10
83 #define AUTHLEN         32
84 #define HOSTLEN         63
85 #define REALLEN         50
86 #define TOPICLEN        500
87 #define CHANNELLEN      200
88 #define MAXLEN          512
89 #define TRIGGERLEN      50
90 #define MAXNUMPARAMS    200 /* maximum number of parameters in one line */
91 #define MAXLANGUAGES    5
92 #define MAXMODES        6
93 #define INVITE_TIMEOUT  30
94 #define BOTWAR_DETECTION_TIME 7
95 #define BOTWAR_DETECTION_EVENTS 6
96 #define REWHO_TIMEOUT   10 /* wait 10 seconds before WHO an unauthed user again */
97
98 //valid nick chars
99 #define VALID_NICK_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890{|}~[\\]^-_`"
100 //the first char is a little bit different
101 //                              0        1         2         3         4         5          6
102 //                              1234567890123456789012345678901234567890123456789012345678 9012   62
103 #define VALID_NICK_CHARS_FIRST "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~[\\]^_`"
104 #define VALID_NICK_CHARS_FIRST_LEN 62
105
106 #define TEMPUSER_LIST_INDEX VALID_NICK_CHARS_FIRST_LEN
107
108 extern time_t start_time;
109 extern int statistics_enabled;
110
111 int stricmp (const char *s1, const char *s2);
112 int stricmplen (const char *s1, const char *s2, int len);
113
114 void restart_bot(int hard_restart);
115 void stop_bot();
116 void reload_config();
117
118 void statistics_update();
119
120 #endif