Allow /rehash throttles to clear throttling.

This commit is contained in:
Jilles Tjoelker 2009-03-07 01:49:09 +01:00
parent dbbe21ed03
commit 0b1e46f5b4
3 changed files with 29 additions and 0 deletions

View File

@ -41,6 +41,7 @@ unsigned long delay_exit_length(void);
int throttle_add(struct sockaddr *addr);
int is_throttle_ip(struct sockaddr *addr);
unsigned long throttle_size(void);
void flush_throttle(void);
#endif

View File

@ -212,6 +212,15 @@ rehash_rejectcache(struct Client *source_p)
}
static void
rehash_throttles(struct Client *source_p)
{
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing throttles",
get_oper_name(source_p));
flush_throttle();
}
static void
rehash_help(struct Client *source_p)
{
@ -252,6 +261,7 @@ static struct hash_commands rehash_commands[] =
{"TXLINES", rehash_txlines },
{"TRESVS", rehash_tresvs },
{"REJECTCACHE", rehash_rejectcache },
{"THROTTLES", rehash_throttles },
{"HELP", rehash_help },
{"NICKDELAY", rehash_nickdelay },
{NULL, NULL }

View File

@ -356,6 +356,24 @@ is_throttle_ip(struct sockaddr *addr)
return 0;
}
void
flush_throttle(void)
{
rb_dlink_node *ptr, *next;
rb_patricia_node_t *pnode;
throttle_t *t;
RB_DLINK_FOREACH_SAFE(ptr, next, throttle_list.head)
{
pnode = ptr->data;
t = pnode->data;
rb_dlinkDelete(ptr, &throttle_list);
rb_free(t);
rb_patricia_remove(throttle_tree, pnode);
}
}
static void
throttle_expires(void *unused)
{