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 /src | |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/hybrid.c | 6 |
1 files changed, 3 insertions, 3 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 */ |