X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/d1cf8afebd67ffcbe8158f893efec25f56c88853..1146ee7dc478b184ee102155940ff961f3919b8f:/modules/m_unreject.c diff --git a/modules/m_unreject.c b/modules/m_unreject.c index 094e10d..a6cc126 100644 --- a/modules/m_unreject.c +++ b/modules/m_unreject.c @@ -20,7 +20,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_unreject.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" @@ -42,28 +41,30 @@ struct Message unreject_msgtab = { mapi_clist_av1 unreject_clist[] = { &unreject_msgtab, NULL }; DECLARE_MODULE_AV1(unreject, NULL, NULL, unreject_clist, NULL, NULL, "$Revision: 3161 $"); -/* - * mo_unreject - * - */ -static int -mo_unreject(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) -{ - if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_duration == 0) - { - sendto_one_notice(source_p, ":Reject cache is disabled"); - return 0; - } - - if(!parse_netmask(parv[1], NULL, NULL)) - { - sendto_one_notice(source_p, ":Unable to parse netmask %s", parv[1]); - return 0; - } - - if(remove_reject(parv[1])) - sendto_one_notice(source_p, ":Removed reject for %s", parv[1]); - else - sendto_one_notice(source_p, ":Unable to remove reject for %s", parv[1]); - return 0; +/* + * mo_unreject + * + */ +static int +mo_unreject(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) +{ + if(ConfigFileEntry.reject_after_count == 0 || ConfigFileEntry.reject_ban_time == 0 || + ConfigFileEntry.reject_duration == 0) + { + sendto_one_notice(source_p, ":Reject cache is disabled"); + return 0; + } + + if(!parse_netmask(parv[1], NULL, NULL)) + { + sendto_one_notice(source_p, ":Unable to parse netmask %s", parv[1]); + return 0; + } + + if(remove_reject_ip(parv[1])) + sendto_one_notice(source_p, ":Removed reject for %s", parv[1]); + else + sendto_one_notice(source_p, ":Unable to remove reject for %s", parv[1]); + + return 0; }