1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 21:23:13 +02:00

BUILD : 1.7.15 (1141) BUGS : N/A NOTES : Removed EOB support from hybrid protocol file, this should make things like entry message work even after a remove net-join

git-svn-id: svn://svn.anope.org/anope/trunk@1141 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@864 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-08-23 08:04:57 +00:00
parent e2637d0455
commit 739674e854
2 changed files with 9 additions and 4 deletions
+3 -3
View File
@@ -104,7 +104,7 @@ IRCDVar myIrcd[] = {
0, /* support helper umode */
0, /* p10 */
NULL, /* character set */
1, /* reports sync state */
0, /* reports sync state */
}
,
{NULL}
@@ -639,7 +639,7 @@ void moduleAddIRCDMsgs(void) {
m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m);
m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m);
m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m);
m = createMessage("EOB", anope_event_eob); addCoreMessage(IRCD,m);
// m = createMessage("EOB", anope_event_eob); addCoreMessage(IRCD,m);
m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m);
m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m);
}
@@ -784,7 +784,7 @@ void hybrid_cmd_svinfo()
void hybrid_cmd_capab()
{
send_cmd(NULL,
"CAPAB :QS EX CHW IE EOB KLN GLN HOPS HUB AOPS KNOCK TBURST PARA");
"CAPAB :QS EX CHW IE KLN GLN HOPS HUB AOPS KNOCK TBURST PARA");
}
/* PASS */
+6 -1
View File
@@ -9,10 +9,15 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="15"
VERSION_EXTRA="-svn"
VERSION_BUILD="1140"
VERSION_BUILD="1141"
# $Log$
#
# BUILD : 1.7.15 (1141)
# BUGS : N/A
# NOTES : Removed EOB support from hybrid protocol file, this should make things like entry message work even after a remove net-join
#
#
# BUILD : 1.7.15 (1140)
# BUGS : N/A
# NOTES : Plexus3 can send global EOBs if we send SVS in the capab string - so now we do, this does NOT help with other hyb based ircds, and they still have an issue.