2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * monitor.h: Code for server-side notify lists.
5 * Copyright (C) 2005 Lee Hardy <lee -at- leeh.co.uk>
6 * Copyright (C) 2005 ircd-ratbox development team
8 * $Id: monitor.h 18526 2005-02-24 19:53:03Z leeh $
10 #ifndef INCLUDED_monitor_h
11 #define INCLUDED_monitor_h
15 struct monitor
*hnext
;
20 extern BlockHeap
*monitor_heap
;
22 #define MONITOR_HASH_SIZE 65536
23 #define MONITOR_HASH_BITS 16
25 void init_monitor(void);
26 struct monitor
*find_monitor(const char *name
, int add
);
27 void clear_monitor(struct Client
*);
29 void monitor_signon(struct Client
*);
30 void monitor_signoff(struct Client
*);