summaryrefslogtreecommitdiff
path: root/src/protocol/ratbox.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:49:02 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:49:02 +0000
commita11aa3e4937301cc22c484594249ddd82e5511bd (patch)
tree51bbf5009c6d22bbfea59ebe53919a4b5bc40ec3 /src/protocol/ratbox.c
parent55bf54a30532cfeff5bb813617d013761212a64b (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/ratbox.c')
-rw-r--r--src/protocol/ratbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c
index 1eda1b033..1342d4f6b 100644
--- a/src/protocol/ratbox.c
+++ b/src/protocol/ratbox.c
@@ -683,7 +683,7 @@ void RatboxProto::SendSQLine(const char *mask, const char *reason)
send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "RESV * %s :%s", mask, reason);
}
-void RatboxProto::cmd_unsgline(const char *mask)
+void RatboxProto::SendSGLineDel(const char *mask)
{
Uid *ud = find_uid(s_OperServ);
send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "UNXLINE * %s", mask);
@@ -693,7 +693,7 @@ void ratbox_cmd_svsadmin(const char *server, int set)
{
}
-void RatboxProto::cmd_sgline(const char *mask, const char *reason)
+void RatboxProto::SendSGLine(const char *mask, const char *reason)
{
Uid *ud = find_uid(s_OperServ);
send_cmd(UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ, "XLINE * %s 0 :%s", mask, reason);
@@ -809,7 +809,7 @@ void RatboxProto::cmd_server(const char *servname, int hop, const char *descript
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript);
}
-void RatboxProto::cmd_connect()
+void RatboxProto::SendConnect()
{
/* Make myself known to myself in the serverlist */
if (UseTS6) me_server = new_server(NULL, ServerName, ServerDesc, SERVER_ISME, TS6SID);