fix monitor.c

This commit is contained in:
William Pitcock 2008-04-01 20:03:40 -05:00
parent 3c8a7c391c
commit af75e59dc5
1 changed files with 55 additions and 55 deletions

View File

@ -37,7 +37,7 @@
#include "hash.h" #include "hash.h"
#include "numeric.h" #include "numeric.h"
struct monitor *monitorTable[MONITOR_HASH_SIZE]; struct monitor *monitorTable[MONITOR_HASH_SIZE];
static rb_bh *monitor_heap; static rb_bh *monitor_heap;
void void
@ -49,40 +49,40 @@ init_monitor(void)
static inline unsigned int static inline unsigned int
hash_monitor_nick(const char *name) hash_monitor_nick(const char *name)
{ {
return fnv_hash_upper((const unsigned char *)name, MONITOR_HASH_BITS, 0); return fnv_hash_upper((const unsigned char *)name, MONITOR_HASH_BITS);
} }
struct monitor * struct monitor *
find_monitor(const char *name, int add) find_monitor(const char *name, int add)
{ {
struct monitor *monptr; struct monitor *monptr;
unsigned int hashv = hash_monitor_nick(name); unsigned int hashv = hash_monitor_nick(name);
for(monptr = monitorTable[hashv]; monptr; monptr = monptr->hnext) for(monptr = monitorTable[hashv]; monptr; monptr = monptr->hnext)
{ {
if(!irccmp(monptr->name, name)) if(!irccmp(monptr->name, name))
return monptr; return monptr;
} }
if(add) if(add)
{ {
monptr = rb_bh_alloc(monitor_heap); monptr = rb_bh_alloc(monitor_heap);
rb_strlcpy(monptr->name, name, sizeof(monptr->name)); rb_strlcpy(monptr->name, name, sizeof(monptr->name));
monptr->hnext = monitorTable[hashv]; monptr->hnext = monitorTable[hashv];
monitorTable[hashv] = monptr; monitorTable[hashv] = monptr;
return monptr; return monptr;
} }
return NULL; return NULL;
} }
void void
free_monitor(struct monitor *monptr) free_monitor(struct monitor *monptr)
{ {
rb_bh_free(monitor_heap, monptr); rb_bh_free(monitor_heap, monptr);
} }
/* monitor_signon() /* monitor_signon()
@ -95,15 +95,15 @@ free_monitor(struct monitor *monptr)
void void
monitor_signon(struct Client *client_p) monitor_signon(struct Client *client_p)
{ {
char buf[USERHOST_REPLYLEN]; char buf[USERHOST_REPLYLEN];
struct monitor *monptr = find_monitor(client_p->name, 0); struct monitor *monptr = find_monitor(client_p->name, 0);
/* noones watching this nick */ /* noones watching this nick */
if(monptr == NULL) if(monptr == NULL)
return; return;
rb_snprintf(buf, sizeof(buf), "%s!%s@%s", client_p->name, client_p->username, client_p->host); rb_snprintf(buf, sizeof(buf), "%s!%s@%s", client_p->name, client_p->username, client_p->host);
sendto_monitor(monptr, form_str(RPL_MONONLINE), me.name, "*", buf); sendto_monitor(monptr, form_str(RPL_MONONLINE), me.name, "*", buf);
} }
@ -117,30 +117,30 @@ monitor_signon(struct Client *client_p)
void void
monitor_signoff(struct Client *client_p) monitor_signoff(struct Client *client_p)
{ {
struct monitor *monptr = find_monitor(client_p->name, 0); struct monitor *monptr = find_monitor(client_p->name, 0);
/* noones watching this nick */ /* noones watching this nick */
if(monptr == NULL) if(monptr == NULL)
return; return;
sendto_monitor(monptr, form_str(RPL_MONOFFLINE), me.name, "*", sendto_monitor(monptr, form_str(RPL_MONOFFLINE), me.name, "*",
client_p->name); client_p->name);
} }
void void
clear_monitor(struct Client *client_p) clear_monitor(struct Client *client_p)
{ {
struct monitor *monptr; struct monitor *monptr;
rb_dlink_node *ptr, *next_ptr; rb_dlink_node *ptr, *next_ptr;
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->localClient->monitor_list.head) RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->localClient->monitor_list.head)
{ {
monptr = ptr->data; monptr = ptr->data;
rb_dlinkFindDestroy(client_p, &monptr->users); rb_dlinkFindDestroy(client_p, &monptr->users);
rb_free_rb_dlink_node(ptr); rb_free_rb_dlink_node(ptr);
} }
client_p->localClient->monitor_list.head = client_p->localClient->monitor_list.tail = NULL; client_p->localClient->monitor_list.head = client_p->localClient->monitor_list.tail = NULL;
client_p->localClient->monitor_list.length = 0; client_p->localClient->monitor_list.length = 0;
} }