]> jfr.im git - irc/rqf/shadowircd.git/blame - include/class.h
[svn] - the new plan:
[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
30#include "tools.h"
31
32struct ConfItem;
33struct Client;
34struct _patricia_tree_t;
35
36struct Class
37{
38 struct Class *next;
39 char *class_name;
40 int max_total;
41 int max_local;
42 int max_global;
43 int max_ident;
44 int max_sendq;
45 int con_freq;
46 int ping_freq;
47 int total;
48 struct _patricia_tree_t *ip_limits;
49 int cidr_bitlen;
50 int cidr_amount;
51
52};
53
54extern dlink_list class_list;
55extern struct Class *default_class;
56
57#define ClassName(x) ((x)->class_name)
58#define ConFreq(x) ((x)->con_freq)
59#define MaxLocal(x) ((x)->max_local)
60#define MaxGlobal(x) ((x)->max_global)
61#define MaxIdent(x) ((x)->max_ident)
62#define MaxUsers(x) ((x)->max_total)
63#define PingFreq(x) ((x)->ping_freq)
64#define MaxSendq(x) ((x)->max_sendq)
65#define CurrUsers(x) ((x)->total)
66#define IpLimits(x) ((x)->ip_limits)
67#define CidrBitlen(x) ((x)->cidr_bitlen)
68#define CidrAmount(x) ((x)->cidr_amount)
69#define ClassPtr(x) ((x)->c_class)
70
71#define ConfClassName(x) (ClassPtr(x)->class_name)
72#define ConfConFreq(x) (ClassPtr(x)->con_freq)
73#define ConfMaxLocal(x) (ClassPtr(x)->max_local)
74#define ConfMaxGlobal(x) (ClassPtr(x)->max_global)
75#define ConfMaxIdent(x) (ClassPtr(x)->max_ident)
76#define ConfMaxUsers(x) (ClassPtr(x)->max_total)
77#define ConfPingFreq(x) (ClassPtr(x)->ping_freq)
78#define ConfMaxSendq(x) (ClassPtr(x)->max_sendq)
79#define ConfCurrUsers(x) (ClassPtr(x)->total)
80#define ConfIpLimits(x) (ClassPtr(x)->ip_limits)
81#define ConfCidrAmount(x) (ClassPtr(x)->cidr_amount)
82#define ConfCidrBitlen(x) (ClassPtr(x)->cidr_bitlen)
83
84void add_class(struct Class *);
85
86struct Class *make_class(void);
87
88extern long get_sendq(struct Client *);
89extern int get_con_freq(struct Class *);
90extern struct Class *find_class(const char *);
91extern const char *get_client_class(struct Client *);
92extern int get_client_ping(struct Client *);
93extern void check_class(void);
94extern void initclass(void);
95extern void free_class(struct Class *);
96extern void fix_class(struct ConfItem *, struct ConfItem *);
97extern void report_classes(struct Client *);
98
99#endif /* INCLUDED_class_h */