diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
commit | ae4f3a615fb38bcec088f0ac41d8d4a78181d90e (patch) | |
tree | a9a70e752ce7640059348d32e4557dd39c8d3244 /src/ircd.c | |
parent | 611bafbafe76852e3ea5942a6e2a18bda9289cf2 (diff) |
Added cmd_eob() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1267 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/ircd.c b/src/ircd.c index c00ff25ba..05fae4f13 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -63,7 +63,6 @@ void initIrcdProto() ircdproto.ircd_cmd_242 = NULL; ircdproto.ircd_cmd_243 = NULL; ircdproto.ircd_cmd_211 = NULL; - ircdproto.ircd_cmd_eob = NULL; ircdproto.ircd_flood_mode_check = NULL; ircdproto.ircd_cmd_jupe = NULL; ircdproto.ircd_valid_nick = NULL; @@ -556,7 +555,7 @@ void anope_cmd_swhois(const char *source, const char *who, const char *mask) void anope_cmd_eob() { - ircdproto.ircd_cmd_eob(); + ircdprotonew->cmd_eob(); } int anope_flood_mode_check(const char *value) @@ -688,11 +687,6 @@ void pmodule_cmd_211(void (*func) (const char *buf)) ircdproto.ircd_cmd_211 = func; } -void pmodule_cmd_eob(void (*func) ()) -{ - ircdproto.ircd_cmd_eob = func; -} - void pmodule_cmd_jupe(void (*func) (const char *jserver, const char *who, const char *reason)) { |