]> jfr.im git - solanum.git/blobdiff - include/monitor.h
Make opers with no known privset pass IsOperGeneral
[solanum.git] / include / monitor.h
index f052cb34ea069a5f2c914b3402d1cd3b6ac9629c..0e70653ca15a4f2bba8077a1e4d09063545c53e4 100644 (file)
@@ -1,26 +1,27 @@
-/* 
+/*
  * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
  * monitor.h: Code for server-side notify lists.
  *
  * Copyright (C) 2005 Lee Hardy <lee -at- leeh.co.uk>
  * Copyright (C) 2005 ircd-ratbox development team
- *
- * $Id: monitor.h 6 2005-09-10 01:02:21Z nenolod $
  */
 #ifndef INCLUDED_monitor_h
 #define INCLUDED_monitor_h
 
+struct rb_bh;
+
 struct monitor
 {
-       struct monitor *hnext;
        char name[NICKLEN];
        rb_dlink_list users;
+       rb_dlink_node node;
+       unsigned int hashv;
 };
 
-extern BlockHeap *monitor_heap;
-
-#define MONITOR_HASH_SIZE 65536
 #define MONITOR_HASH_BITS 16
+#define MONITOR_HASH_SIZE (1<<MONITOR_HASH_BITS)
+
+void free_monitor(struct monitor *);
 
 void init_monitor(void);
 struct monitor *find_monitor(const char *name, int add);