]> jfr.im git - irc/rqf/shadowircd.git/blame - include/class.h
Allow coloured part reasons in -c channels.
[irc/rqf/shadowircd.git] / include / class.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * class.h: The ircd class management header.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: class.h 6 2005-09-10 01:02:21Z nenolod $
25 */
26
27#ifndef INCLUDED_class_h
28#define INCLUDED_class_h
29
212380e3 30struct ConfItem;
31struct Client;
32struct _patricia_tree_t;
33
34struct Class
35{
36 struct Class *next;
37 char *class_name;
38 int max_total;
39 int max_local;
40 int max_global;
41 int max_ident;
42 int max_sendq;
43 int con_freq;
44 int ping_freq;
45 int total;
c945815b 46 rb_patricia_tree_t *ip_limits;
212380e3 47 int cidr_bitlen;
48 int cidr_amount;
49
50};
51
08d11e34 52extern rb_dlink_list class_list;
212380e3 53extern struct Class *default_class;
54
55#define ClassName(x) ((x)->class_name)
56#define ConFreq(x) ((x)->con_freq)
57#define MaxLocal(x) ((x)->max_local)
58#define MaxGlobal(x) ((x)->max_global)
59#define MaxIdent(x) ((x)->max_ident)
60#define MaxUsers(x) ((x)->max_total)
61#define PingFreq(x) ((x)->ping_freq)
62#define MaxSendq(x) ((x)->max_sendq)
63#define CurrUsers(x) ((x)->total)
64#define IpLimits(x) ((x)->ip_limits)
65#define CidrBitlen(x) ((x)->cidr_bitlen)
66#define CidrAmount(x) ((x)->cidr_amount)
67#define ClassPtr(x) ((x)->c_class)
68
69#define ConfClassName(x) (ClassPtr(x)->class_name)
70#define ConfConFreq(x) (ClassPtr(x)->con_freq)
71#define ConfMaxLocal(x) (ClassPtr(x)->max_local)
72#define ConfMaxGlobal(x) (ClassPtr(x)->max_global)
73#define ConfMaxIdent(x) (ClassPtr(x)->max_ident)
74#define ConfMaxUsers(x) (ClassPtr(x)->max_total)
75#define ConfPingFreq(x) (ClassPtr(x)->ping_freq)
76#define ConfMaxSendq(x) (ClassPtr(x)->max_sendq)
77#define ConfCurrUsers(x) (ClassPtr(x)->total)
78#define ConfIpLimits(x) (ClassPtr(x)->ip_limits)
79#define ConfCidrAmount(x) (ClassPtr(x)->cidr_amount)
80#define ConfCidrBitlen(x) (ClassPtr(x)->cidr_bitlen)
81
82void add_class(struct Class *);
83
84struct Class *make_class(void);
85
86extern long get_sendq(struct Client *);
87extern int get_con_freq(struct Class *);
88extern struct Class *find_class(const char *);
89extern const char *get_client_class(struct Client *);
90extern int get_client_ping(struct Client *);
91extern void check_class(void);
92extern void initclass(void);
93extern void free_class(struct Class *);
94extern void fix_class(struct ConfItem *, struct ConfItem *);
95extern void report_classes(struct Client *);
96
97#endif /* INCLUDED_class_h */