diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-08-23 08:04:57 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-08-23 08:04:57 +0000 |
commit | 739674e8541fce2d502854864e433b887d81522d (patch) | |
tree | f7411380d8b4277efb6047a1173191a510e32d28 | |
parent | e2637d04558871b7cfb0503d0042be42e7cf592b (diff) |
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
-rw-r--r-- | src/protocol/hybrid.c | 6 | ||||
-rw-r--r-- | version.log | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/protocol/hybrid.c b/src/protocol/hybrid.c index 3ec710b64..635f2e446 100644 --- a/src/protocol/hybrid.c +++ b/src/protocol/hybrid.c @@ -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 */ diff --git a/version.log b/version.log index 75e2d1146..5ec2b9b3a 100644 --- a/version.log +++ b/version.log @@ -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. |