summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-12-23 19:01:49 -0500
committerAdam <Adam@anope.org>2010-12-23 19:01:49 -0500
commitf8a0a645b0719750061d79cc7aa95aebbadc4c81 (patch)
treee5829b7aa2cab63972cc2c290ec807cff0940b0c
parent12b0ff0593cc5f2c0f61ca575f9e0af8b0084994 (diff)
Remove vhost requests from nicks that expire
-rw-r--r--Changes1
-rw-r--r--src/modules/hs_request.c3
-rw-r--r--version.log3
3 files changed, 6 insertions, 1 deletions
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