Allow /rehash throttles to clear throttling.
This commit is contained in:
parent
ad13bb7556
commit
995f300eb1
3 changed files with 29 additions and 0 deletions
|
@ -41,6 +41,7 @@ unsigned long delay_exit_length(void);
|
||||||
int throttle_add(struct sockaddr *addr);
|
int throttle_add(struct sockaddr *addr);
|
||||||
int is_throttle_ip(struct sockaddr *addr);
|
int is_throttle_ip(struct sockaddr *addr);
|
||||||
unsigned long throttle_size(void);
|
unsigned long throttle_size(void);
|
||||||
|
void flush_throttle(void);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -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
|
static void
|
||||||
rehash_help(struct Client *source_p)
|
rehash_help(struct Client *source_p)
|
||||||
{
|
{
|
||||||
|
@ -252,6 +261,7 @@ static struct hash_commands rehash_commands[] =
|
||||||
{"TXLINES", rehash_txlines },
|
{"TXLINES", rehash_txlines },
|
||||||
{"TRESVS", rehash_tresvs },
|
{"TRESVS", rehash_tresvs },
|
||||||
{"REJECTCACHE", rehash_rejectcache },
|
{"REJECTCACHE", rehash_rejectcache },
|
||||||
|
{"THROTTLES", rehash_throttles },
|
||||||
{"HELP", rehash_help },
|
{"HELP", rehash_help },
|
||||||
{"NICKDELAY", rehash_nickdelay },
|
{"NICKDELAY", rehash_nickdelay },
|
||||||
{NULL, NULL }
|
{NULL, NULL }
|
||||||
|
|
18
src/reject.c
18
src/reject.c
|
@ -356,6 +356,24 @@ is_throttle_ip(struct sockaddr *addr)
|
||||||
return 0;
|
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
|
static void
|
||||||
throttle_expires(void *unused)
|
throttle_expires(void *unused)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue