]> jfr.im git - solanum.git/blame - include/monitor.h
monitor: fix the resource leak properly, unlike the moronic elemental-ircd developers
[solanum.git] / include / monitor.h
CommitLineData
55abcbb2 1/*
212380e3
AC
2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * monitor.h: Code for server-side notify lists.
4 *
5 * Copyright (C) 2005 Lee Hardy <lee -at- leeh.co.uk>
6 * Copyright (C) 2005 ircd-ratbox development team
7 *
8 * $Id: monitor.h 6 2005-09-10 01:02:21Z nenolod $
9 */
10#ifndef INCLUDED_monitor_h
11#define INCLUDED_monitor_h
12
398b6a73 13struct rb_bh;
423f18a0 14
212380e3
AC
15struct monitor
16{
17 struct monitor *hnext;
18 char name[NICKLEN];
5b96d9a6 19 rb_dlink_list users;
d5f856c6
AC
20 rb_dlink_node node;
21 unsigned int hashv;
212380e3
AC
22};
23
8bd5767b 24#define MONITOR_HASH_BITS 16
423f18a0 25#define MONITOR_HASH_SIZE (1<<MONITOR_HASH_BITS)
212380e3 26
423f18a0 27void free_monitor(struct monitor *);
212380e3
AC
28
29void init_monitor(void);
30struct monitor *find_monitor(const char *name, int add);
a1f535de 31void clear_monitor(struct Client *);
212380e3
AC
32
33void monitor_signon(struct Client *);
34void monitor_signoff(struct Client *);
35
36#endif