]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/xline.h
Added some stuff to diffrentiate between global and local Q/Z lines
[user/henk/code/inspircd.git] / include / xline.h
1 #ifndef __XLINE_H
2 #define __XLINE_H
3
4 // include the common header files
5
6 #include <typeinfo>
7 #include <iostream>
8 #include <string>
9 #include <deque>
10 #include <sstream>
11 #include <vector>
12 #include "users.h"
13 #include "channels.h"
14
15
16 /** XLine is the base class for ban lines such as G lines and K lines.
17  */
18 class XLine : public classbase
19 {
20   public:
21
22         /** The time the line was added.
23          */
24         time_t set_time;
25         
26         /** The duration of the ban, or 0 if permenant
27          */
28         long duration;
29         
30         /** Source of the ban. This can be a servername or an oper nickname
31          */
32         char source[MAXBUF];
33         
34         /** Reason for the ban
35          */
36         char reason[MAXBUF];
37         
38         /** Number of times the core matches the ban, for statistics
39          */
40         long n_matches;
41         
42 };
43
44 /** KLine class
45  */
46 class KLine : public XLine
47 {
48   public:
49         /** Hostmask (ident@host) to match against
50          * May contain wildcards.
51          */
52         char hostmask[MAXBUF];
53 };
54
55 /** GLine class
56  */
57 class GLine : public XLine
58 {
59   public:
60         /** Hostmask (ident@host) to match against
61          * May contain wildcards.
62          */
63         char hostmask[MAXBUF];
64 };
65
66 /** ZLine class
67  */
68 class ZLine : public XLine
69 {
70   public:
71         /** IP Address (xx.yy.zz.aa) to match against
72          * May contain wildcards.
73          */
74         char ipaddr[MAXBUF];
75         bool is_global;
76 };
77
78 /** QLine class
79  */
80 class QLine : public XLine
81 {
82   public:
83         /** Nickname to match against.
84          * May contain wildcards.
85          */
86         char nick[MAXBUF];
87         bool is_global;
88 };
89
90 void read_xline_defaults();
91
92 void add_gline(long duration, char* source, char* reason, char* hostmask);
93 void add_qline(long duration, char* source, char* reason, char* nickname);
94 void add_zline(long duration, char* source, char* reason, char* ipaddr);
95 void add_kline(long duration, char* source, char* reason, char* hostmask);
96
97 bool del_gline(char* hostmask);
98 bool del_qline(char* nickname);
99 bool del_zline(char* ipaddr);
100 bool del_kline(char* hostmask);
101
102 char* matches_qline(const char* nick);
103 char* matches_gline(const char* host);
104 char* matches_zline(const char* ipaddr);
105 char* matches_kline(const char* host);
106
107 void expire_lines();
108 void apply_lines();
109
110 void stats_k(userrec* user);
111 void stats_g(userrec* user);
112 void stats_q(userrec* user);
113 void stats_z(userrec* user);
114
115 void gline_set_creation_time(char* host, time_t create_time);
116 void qline_set_creation_time(char* nick, time_t create_time);
117 void zline_set_creation_time(char* ip, time_t create_time);
118
119 bool zline_make_global(char* ipaddr);
120 bool qline_make_global(char* nickname);
121
122 void sync_xlines(serverrec* serv, char* tcp_host);
123
124 #endif
125
126