File: notice.h

package info (click to toggle)
ircii-pana 1%3A1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 14,048 kB
  • ctags: 14,567
  • sloc: ansic: 130,654; sql: 6,041; makefile: 4,313; cpp: 1,270; tcl: 1,230; sh: 638; java: 151
file content (37 lines) | stat: -rw-r--r-- 843 bytes parent folder | download | duplicates (3)
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

#ifndef _NOTICE_H
#define _NOTICE_H

#ifdef WANT_OPERVIEW
#undef NEWNET_IRCOP

#define NICK_COLLIDE	0x000001
#define NICK_KILL	0x000002
#define IP_MISMATCH	0x000004
#define HACK_OPS	0x000008
#define IDENTD		0x000010
#define FAKE_MODE	0x000020
#define UNAUTHS		0x000040
#define TOO_MANY	0x000080
#define TRAFFIC		0x000100
#define REHASH		0x000200
#define KLINE		0x000400
#define POSSIBLE_BOT	0x000800
#define OPER_MODE	0x001000
#define SQUIT		0x002000
#define SERVER_CONNECT	0x004000
#define CLIENT_CONNECT	0x008000
#define TERM_FLOOD	0x010000
#define INVALID_USER	0x020000
#define STATS_REQUEST	0x040000
#define NICK_FLOODING	0x080000
#define KILL_ACTIVE	0x100000
#define SERVER_CRAP	0x200000

void	s_watch (char *, char *, char *, char *);
void	ov_window (char *, char *, char *, char *);
void	setup_ov_mode (int, int, int);
#endif


#endif