Author: Andres Miller <a1kmm@mware.virtualave.net>
[ircu2.10.12-pk.git] / include / class.h
1 /*
2  * IRC - Internet Relay Chat, include/class.h
3  * Copyright (C) 1990 Darren Reed
4  * Copyright (C) 1996 - 1997 Carlo Wood
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * $Id$
21  */
22 #ifndef INCLUDED_class_h
23 #define INCLUDED_class_h
24 #ifndef INCLUDED_sys_types_h
25 #include <sys/types.h>
26 #define INCLUDED_sys_types_h
27 #endif
28
29 struct Client;
30 struct ConfItem;
31
32 /*
33  * Structures
34  */
35 struct ConnectionClass {
36   struct ConnectionClass* next;
37   char                    *cc_name;
38   unsigned int            max_sendq;
39   short                   ping_freq;
40   short                   conn_freq;
41   short                   max_links;
42   unsigned char           valid;
43   int                     ref_count;
44 };
45
46 /*
47  * Macro's
48  */
49
50 #define ConClass(x)     ((x)->cc_name)
51 #define PingFreq(x)     ((x)->ping_freq)
52 #define ConFreq(x)      ((x)->conn_freq)
53 #define MaxLinks(x)     ((x)->max_links)
54 #define MaxSendq(x)     ((x)->max_sendq)
55 #define Links(x)        ((x)->ref_count)
56
57 #define ConfClass(x)    ((x)->conn_class->cc_name)
58 #define ConfPingFreq(x) ((x)->conn_class->ping_freq)
59 #define ConfConFreq(x)  ((x)->conn_class->conn_freq)
60 #define ConfMaxLinks(x) ((x)->conn_class->max_links)
61 #define ConfSendq(x)    ((x)->conn_class->max_sendq)
62 #define ConfLinks(x)    ((x)->conn_class->ref_count)
63
64 /*
65  * Proto types
66  */
67
68 extern void init_class(void);
69
70 extern const struct ConnectionClass* get_class_list(void);
71 extern void class_mark_delete(void);
72 extern void class_delete_marked(void);
73
74 extern struct ConnectionClass *find_class(const char *name);
75 extern struct ConnectionClass *make_class(void);
76 extern void free_class(struct ConnectionClass * tmp);
77 extern unsigned int get_con_freq(struct ConnectionClass * clptr);
78 extern unsigned int get_client_ping(struct Client *acptr);
79 extern char *get_conf_class(const struct ConfItem *aconf);
80 extern int get_conf_ping(const struct ConfItem *aconf);
81 extern char *get_client_class(struct Client *acptr);
82 extern void add_class(char *name, unsigned int ping,
83                       unsigned int confreq, unsigned int maxli, unsigned int sendq);
84 extern void check_class(void);
85 extern void report_classes(struct Client *sptr);
86 extern unsigned int get_sendq(struct Client* cptr);
87
88 extern void class_send_meminfo(struct Client* cptr);
89 #endif /* INCLUDED_class_h */