diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-01 21:20:54 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-01 21:20:54 +0000 |
commit | e46bc26a06cecb72ffe8587ec84997d89b75d852 (patch) | |
tree | 9d005b4f035494962cfbbdfd06a0fd23c9890f1e /src/protocol/unreal32.c | |
parent | 8aa6436d7380d160d1fc2eb2235d71b57dacea17 (diff) |
Merge commit 'cbx/anopeng-protocol' into anopeng
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1295 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 179 |
1 files changed, 0 insertions, 179 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 2f1775e01..d893797a8 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -541,29 +541,6 @@ void UnrealIRCdProto::cmd_svsmode(User *u, int ac, const char **av) } } -/* 372 */ -void unreal_cmd_372(const char *source, const char *msg) -{ - send_cmd(ServerName, "372 %s :- %s", source, msg); -} - -void unreal_cmd_372_error(const char *source) -{ - send_cmd(ServerName, "422 %s :- MOTD file not found! Please " - "contact your IRC administrator.", source); -} - -void unreal_cmd_375(const char *source) -{ - send_cmd(ServerName, "375 %s :- %s Message of the Day", - source, ServerName); -} - -void unreal_cmd_376(const char *source) -{ - send_cmd(ServerName, "376 %s :End of /MOTD command.", source); -} - void UnrealIRCdProto::cmd_guest_nick(const char *nick, const char *user, const char *host, const char *real, const char *modes) { send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", send_token("NICK", "&"), nick, static_cast<long>(time(NULL)), user, host, ServerName, modes, host, @@ -602,13 +579,6 @@ void UnrealIRCdProto::cmd_bot_chan_mode(const char *nick, const char *chan) anope_cmd_mode(nick, chan, "%s %s %s", myIrcd->botchanumode, nick, nick); } -void unreal_cmd_351(const char *source) -{ - send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s (%s) -- %s", - source, version_number, ServerName, myIrcd->name, - version_flags, EncModule, version_build); -} - /* PROTOCTL */ /* NICKv2 = Nick Version 2 @@ -696,129 +666,6 @@ void unreal_cmd_chgident(const char *nick, const char *vIdent) vIdent); } -/* 391 RPL_TIME ":%s 391 %s %s :%s" */ -void unreal_cmd_391(const char *source, const char *timestr) -{ - if (!timestr) { - return; - } - send_cmd(ServerName, "391 %s %s :%s", source, ServerName, timestr); -} - -/* 250 */ -void unreal_cmd_250(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(NULL, "250 %s", buf); -} - -/* 307 */ -void unreal_cmd_307(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(ServerName, "307 %s", buf); -} - -/* 311 */ -void unreal_cmd_311(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(ServerName, "311 %s", buf); -} - -/* 312 */ -void unreal_cmd_312(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(ServerName, "312 %s", buf); -} - -/* 317 */ -void unreal_cmd_317(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(ServerName, "317 %s", buf); -} - -/* 219 */ -void unreal_cmd_219(const char *source, const char *letter) -{ - if (!source) { - return; - } - - if (letter) { - send_cmd(NULL, "219 %s %c :End of /STATS report.", source, - *letter); - } else { - send_cmd(NULL, "219 %s l :End of /STATS report.", source); - } -} - -/* 401 */ -void unreal_cmd_401(const char *source, const char *who) -{ - if (!source || !who) { - return; - } - send_cmd(ServerName, "401 %s %s :No such service.", source, who); -} - -/* 318 */ -void unreal_cmd_318(const char *source, const char *who) -{ - if (!source || !who) { - return; - } - - send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); -} - -/* 242 */ -void unreal_cmd_242(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(NULL, "242 %s", buf); -} - -/* 243 */ -void unreal_cmd_243(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(NULL, "243 %s", buf); -} - -/* 211 */ -void unreal_cmd_211(const char *buf) -{ - if (!buf) { - return; - } - - send_cmd(NULL, "211 %s", buf); -} - /* SQLINE */ /* ** parv[0] = sender @@ -1802,31 +1649,6 @@ void moduleAddIRCDMsgs(void) { /* *INDENT-ON* */ /** - * Tell anope which function we want to perform each task inside of anope. - * These prototypes must match what anope expects. - **/ -void moduleAddAnopeCmds() -{ - pmodule_cmd_372(unreal_cmd_372); - pmodule_cmd_372_error(unreal_cmd_372_error); - pmodule_cmd_375(unreal_cmd_375); - pmodule_cmd_376(unreal_cmd_376); - pmodule_cmd_351(unreal_cmd_351); - pmodule_cmd_391(unreal_cmd_391); - pmodule_cmd_250(unreal_cmd_250); - pmodule_cmd_307(unreal_cmd_307); - pmodule_cmd_311(unreal_cmd_311); - pmodule_cmd_312(unreal_cmd_312); - pmodule_cmd_317(unreal_cmd_317); - pmodule_cmd_219(unreal_cmd_219); - pmodule_cmd_401(unreal_cmd_401); - pmodule_cmd_318(unreal_cmd_318); - pmodule_cmd_242(unreal_cmd_242); - pmodule_cmd_243(unreal_cmd_243); - pmodule_cmd_211(unreal_cmd_211); -} - -/** * Now tell anope how to use us. **/ int AnopeInit(int argc, char **argv) @@ -1857,7 +1679,6 @@ int AnopeInit(int argc, char **argv) pmodule_key_mode(CMODE_k); pmodule_limit_mode(CMODE_l); - moduleAddAnopeCmds(); pmodule_ircd_proto(&ircd_proto); moduleAddIRCDMsgs(); |