diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-01 22:30:41 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-01 22:30:41 +0000 |
commit | 6887e3ae38a11ea838ecf16e31df6b1a2c7b7390 (patch) | |
tree | 7c675c64bc4c0aa54c060075c172eecca0638239 /src/protocol/charybdis.h | |
parent | 60b861ee251a7d9cc351545fe2314a400a4e81b3 (diff) |
Start converting stuff that sends to server to use BotInfo, as everything is now a BotInfo struct, instead of craqy struct Uid stuff. INCOMPLETE. Also, create a derived IRCdProtoTS6 class, to save repeating ourselves X million times.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1297 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/charybdis.h')
-rw-r--r-- | src/protocol/charybdis.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/protocol/charybdis.h b/src/protocol/charybdis.h index f5754accb..2e85b0c3c 100644 --- a/src/protocol/charybdis.h +++ b/src/protocol/charybdis.h @@ -46,10 +46,9 @@ #define DEFAULT_MLOCK CMODE_n | CMODE_t -class CharybdisProto : public IRCDProto { +class CharybdisProto : public IRCDTS6Proto { public: void cmd_remove_akill(const char *, const char *); - void cmd_topic(const char *, const char *, const char *, const char *, time_t); void cmd_vhost_off(User *); void cmd_akill(const char *, const char *, const char *, time_t, time_t, const char *); void cmd_svskill(const char *, const char *, const char *); @@ -58,9 +57,6 @@ class CharybdisProto : public IRCDProto { void cmd_bot_nick(const char *, const char *, const char *, const char *, const char *); void cmd_kick(const char *, const char *, const char *, const char *); void cmd_notice_ops(const char *, const char *, const char *); - void cmd_message(const char *, const char *, const char *); - void cmd_notice(const char *, const char *, const char *); - void cmd_privmsg(const char *, const char *, const char *); void cmd_bot_chan_mode(const char *, const char *); void cmd_quit(const char *, const char *); void cmd_pong(const char *, const char *); |