forked from kofany/psotnic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global-var.h
48 lines (41 loc) · 887 Bytes
/
global-var.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef PSOTNIC_GLOBAL_VAR_H
#define PSOTNIC_GLOBAL_VAR_H 1
extern time_t NOW;
extern client ME;
extern settings set;
extern ul userlist;
extern prvset pset;
extern CONFIG config;
extern char *thisfile;
extern inet net;
extern penal penalty;
extern EXPANDINFO expandinfo;
extern ign ignore;
extern fifo ctcp;
extern fifo invite;
extern QTIsaac<8, int> Isaac;
extern idle antiidle;
extern unit_table ut_time[];
extern unit_table ut_perc[];
extern asyn_socks5 socks5;
extern update psotget;
extern int hostNotify;
extern int stopPsotnic;
extern ptrlist<module> modules;
extern bool stopParsing;
#ifdef HAVE_DEBUG
extern int debug;
#endif
extern int creation;
#ifdef HAVE_TCL
extern tcl tclparser;
#endif
//extern int noulimit;
#ifdef HAVE_ADNS
extern adns *resolver;
#endif
#ifdef HAVE_IRC_BACKTRACE
extern char irc_buf[IRC_BUFS][MAX_LEN];
extern int current_irc_buf;
#endif
#endif