diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:49:02 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:49:02 +0000 |
commit | a11aa3e4937301cc22c484594249ddd82e5511bd (patch) | |
tree | 51bbf5009c6d22bbfea59ebe53919a4b5bc40ec3 /src/protocol/obsolete/plexus3.c | |
parent | 55bf54a30532cfeff5bb813617d013761212a64b (diff) |
Convert a bunch more protocol stuff.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1308 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/obsolete/plexus3.c')
-rw-r--r-- | src/protocol/obsolete/plexus3.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/protocol/obsolete/plexus3.c b/src/protocol/obsolete/plexus3.c index 6bc5aa3a9..4bc86052d 100644 --- a/src/protocol/obsolete/plexus3.c +++ b/src/protocol/obsolete/plexus3.c @@ -759,19 +759,19 @@ plexus_SendSQLine (const char *mask, const char *reason) } void -plexus_cmd_unsgline (const char *mask) +plexus_SendSGLineDel (const char *mask) { send_cmd (s_OperServ, "UNXLINE * %s", mask); } void -plexus_cmd_unszline (const char *mask) +plexus_SendSZLineDel (const char *mask) { /* Does not support */ } void -plexus_cmd_szline (const char *mask, const char *reason, const char *whom) +plexus_SendSZLine (const char *mask, const char *reason, const char *whom) { /* Does not support */ } @@ -788,7 +788,7 @@ plexus_cmd_svsadmin (const char *server, int set) } void -plexus_cmd_sgline (const char *mask, const char *reason) +plexus_SendSGLine (const char *mask, const char *reason) { send_cmd (s_OperServ, "XLINE * %s 0 :%s", mask, reason); } @@ -944,7 +944,7 @@ plexus_cmd_server (const char *servname, int hop, const char *descript) } void -plexus_cmd_connect (int servernum) +plexus_SendConnect (int servernum) { me_server = new_server (NULL, ServerName, ServerDesc, SERVER_ISME, NULL); @@ -1481,7 +1481,7 @@ anope_event_capab (const char *source, int ac, const char **av) /* SVSHOLD - set */ void -plexus_cmd_svshold (const char *nick) +plexus_SendSVSHOLD (const char *nick) { send_cmd (s_OperServ, "ENCAP * RESV %d %s 0 :%s", NSReleaseTimeout, nick, "This nick is being held for a registered user. " @@ -1490,7 +1490,7 @@ plexus_cmd_svshold (const char *nick) /* SVSHOLD - release */ void -plexus_cmd_release_svshold (const char *nick) +plexus_SendSVSHOLDDel (const char *nick) { send_cmd (s_OperServ, "UNRESV * %s", nick); } @@ -1786,13 +1786,13 @@ moduleAddAnopeCmds () pmodule_SendChangeBotNick (plexus_cmd_chg_nick); pmodule_SendForceNickChange (plexus_cmd_svsnick); pmodule_SendVhost (plexus_cmd_vhost_on); - pmodule_cmd_connect (plexus_cmd_connect); - pmodule_cmd_svshold (plexus_cmd_svshold); - pmodule_cmd_release_svshold (plexus_cmd_release_svshold); - pmodule_cmd_unsgline (plexus_cmd_unsgline); - pmodule_cmd_unszline (plexus_cmd_unszline); - pmodule_cmd_szline (plexus_cmd_szline); - pmodule_cmd_sgline (plexus_cmd_sgline); + pmodule_SendConnect (plexus_cmd_connect); + pmodule_SendSVSHOLD (plexus_cmd_svshold); + pmodule_SendSVSHOLDDel (plexus_cmd_release_svshold); + pmodule_SendSGLineDel (plexus_cmd_unsgline); + pmodule_SendSZLineDel (plexus_cmd_unszline); + pmodule_SendSZLine (plexus_cmd_szline); + pmodule_SendSGLine (plexus_cmd_sgline); pmodule_cmd_unban (plexus_cmd_unban); pmodule_SendSVSMode_chan (plexus_cmd_svsmode_chan); pmodule_cmd_svid_umode (plexus_cmd_svid_umode); |