Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / include / ircd_features.h
1 #ifndef INCLUDED_features_h
2 #define INCLUDED_features_h
3 /*
4  * IRC - Internet Relay Chat, include/features.h
5  * Copyright (C) 2000 Kevin L. Mitchell <klmitch@mit.edu>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * $Id$
22  */
23
24 struct Client;
25
26 enum Feature {
27   /* Misc. features */
28   FEAT_LOG,
29   FEAT_DOMAINNAME,
30   FEAT_RELIABLE_CLOCK,
31   FEAT_BUFFERPOOL,
32   FEAT_HAS_FERGUSON_FLUSHER,
33   FEAT_CLIENT_FLOOD,
34   FEAT_SERVER_PORT,
35   FEAT_NODEFAULTMOTD,
36   FEAT_KILL_IPMISMATCH,
37   FEAT_IDLE_FROM_MSG,
38   FEAT_HUB,
39   FEAT_WALLOPS_OPER_ONLY,
40
41   /* Some misc. default paths */
42   FEAT_MPATH,
43   FEAT_RPATH,
44   FEAT_PPATH,
45
46   /* Networking features */
47   FEAT_VIRTUAL_HOST,
48   FEAT_TOS_SERVER,
49   FEAT_TOS_CLIENT,
50
51   /* features that affect all operators */
52   FEAT_CRYPT_OPER_PASSWORD,
53   FEAT_OPER_NO_CHAN_LIMIT,
54   FEAT_OPER_MODE_LCHAN,
55   FEAT_OPER_WALK_THROUGH_LMODES,
56   FEAT_NO_OPER_DEOP_LCHAN,
57   FEAT_SHOW_INVISIBLE_USERS,
58   FEAT_SHOW_ALL_INVISIBLE_USERS,
59   FEAT_UNLIMIT_OPER_QUERY,
60   FEAT_LOCAL_KILL_ONLY,
61   FEAT_CONFIG_OPERCMDS,
62
63   /* features that affect global opers on this server */
64   FEAT_OPER_KILL,
65   FEAT_OPER_REHASH,
66   FEAT_OPER_RESTART,
67   FEAT_OPER_DIE,
68   FEAT_OPER_GLINE,
69   FEAT_OPER_LGLINE,
70   FEAT_OPER_JUPE,
71   FEAT_OPER_LJUPE,
72   FEAT_OPER_OPMODE,
73   FEAT_OPER_LOPMODE,
74   FEAT_OPER_BADCHAN,
75   FEAT_OPER_LBADCHAN,
76   FEAT_OPER_SET,
77   FEAT_OPERS_SEE_IN_SECRET_CHANNELS,
78
79   /* features that affect local opers on this server */
80   FEAT_LOCOP_KILL,
81   FEAT_LOCOP_REHASH,
82   FEAT_LOCOP_RESTART,
83   FEAT_LOCOP_DIE,
84   FEAT_LOCOP_LGLINE,
85   FEAT_LOCOP_LJUPE,
86   FEAT_LOCOP_LOPMODE,
87   FEAT_LOCOP_LBADCHAN,
88   FEAT_LOCOP_SET,
89   FEAT_LOCOP_SEE_IN_SECRET_CHANNELS,
90
91   FEAT_LAST_F
92 };
93
94 extern int feature_set(struct Client* from, const char* const* fields,
95                        int count);
96 extern int feature_reset(struct Client* from, const char* const* fields,
97                          int count);
98 extern int feature_get(struct Client* from, const char* const* fields,
99                        int count);
100
101 extern void feature_unmark(void);
102 extern void feature_mark(void);
103
104 extern void feature_report(struct Client* to);
105
106 extern int feature_int(enum Feature feat);
107 extern int feature_bool(enum Feature feat);
108 extern const char *feature_str(enum Feature feat);
109
110 #endif /* INCLUDED_features_h */