Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/include/notice.h
1069 views
1
2
#ifndef _NOTICE_H
3
#define _NOTICE_H
4
5
#ifdef WANT_OPERVIEW
6
#undef NEWNET_IRCOP
7
8
#define NICK_COLLIDE 0x000001
9
#define NICK_KILL 0x000002
10
#define IP_MISMATCH 0x000004
11
#define HACK_OPS 0x000008
12
#define IDENTD 0x000010
13
#define FAKE_MODE 0x000020
14
#define UNAUTHS 0x000040
15
#define TOO_MANY 0x000080
16
#define TRAFFIC 0x000100
17
#define REHASH 0x000200
18
#define KLINE 0x000400
19
#define POSSIBLE_BOT 0x000800
20
#define OPER_MODE 0x001000
21
#define SQUIT 0x002000
22
#define SERVER_CONNECT 0x004000
23
#define CLIENT_CONNECT 0x008000
24
#define TERM_FLOOD 0x010000
25
#define INVALID_USER 0x020000
26
#define STATS_REQUEST 0x040000
27
#define NICK_FLOODING 0x080000
28
#define KILL_ACTIVE 0x100000
29
#define SERVER_CRAP 0x200000
30
31
void s_watch (char *, char *, char *, char *);
32
void ov_window (char *, char *, char *, char *);
33
void setup_ov_mode (int, int, int);
34
#endif
35
36
37
#endif
38
39