1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 23:06:38 +02:00

Remove vhost requests from nicks that expire

This commit is contained in:
Adam
2010-12-23 19:01:49 -05:00
parent 12b0ff0593
commit f8a0a645b0
3 changed files with 6 additions and 1 deletions
+1
View File
@@ -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
-------------------
+3
View File
@@ -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);
+2 -1
View File
@@ -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