From f8a0a645b0719750061d79cc7aa95aebbadc4c81 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 23 Dec 2010 19:01:49 -0500 Subject: [PATCH] Remove vhost requests from nicks that expire --- Changes | 1 + src/modules/hs_request.c | 3 +++ version.log | 3 ++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index abf1c66d1..b6f1a6cb1 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ Anope Version 1.8 - GIT ----------------------- 12/15 F Fixed /cs enforce #channel to say SET was enforced not (null) [#1213] 12/23 F Fixed /cs (un)ban and akick from matching users real hosts/IP [#1079] +12/12 F Remove vhost requests from nicks that expire [ #00] Anope Version 1.8.5 ------------------- diff --git a/src/modules/hs_request.c b/src/modules/hs_request.c index 72d1c46f6..fedf88735 100644 --- a/src/modules/hs_request.c +++ b/src/modules/hs_request.c @@ -115,6 +115,9 @@ int AnopeInit(int argc, char **argv) hook = createEventHook(EVENT_NICK_DROPPED, hsreqevt_nick_dropped); moduleAddEventHook(hook); + hook = createEventHook(EVENT_NICK_EXPIRE, hsreqevt_nick_dropped); + moduleAddEventHook(hook); + hook = createEventHook(EVENT_DB_SAVING, hsreqevt_db_saving); moduleAddEventHook(hook); diff --git a/version.log b/version.log index 894e790d4..986a88935 100644 --- a/version.log +++ b/version.log @@ -8,9 +8,10 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="5" VERSION_EXTRA="-git" -VERSION_BUILD="3049" +VERSION_BUILD="3050" # $Log$ # Changes since 1.8.5 Release +#Revision 3050 - Remove vhost requests from nicks that expire #Revision 3049 - Bug #1079 - Prevent /cs ban, akick, unban, etc, from matching against users real hostname and IPs in an attempt to prevent unauthorized users from gaining other users IPs via brute force attacks. #Revision 3048 - Bug #1213 - Fixed /cs enforce #channel to say SET was enforced not (null) #Revision 3047 - Fixed some warnings found by cppcheck