summaryrefslogtreecommitdiff
path: root/src/protocol/unreal32.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:28:10 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 08:28:10 +0000
commitd5d6b049e0ef4ab05a5bfdd632af645190dba457 (patch)
treea28192e95a261e15381af712178b64a724bff84b /src/protocol/unreal32.c
parent8a3495279c31c0a5a16aa69409b4d3ec038653eb (diff)
Rename a bunch of functions to use new scheme.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1299 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r--src/protocol/unreal32.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c
index 04591ee3f..47b7e82b7 100644
--- a/src/protocol/unreal32.c
+++ b/src/protocol/unreal32.c
@@ -478,17 +478,17 @@ int anope_event_capab(const char *source, int ac, const char **av)
}
/* SVSNOOP */
-void UnrealIRCdProto::cmd_svsnoop(const char *server, int set)
+void UnrealIRCdProto::SendSVSNOOP(const char *server, int set)
{
send_cmd(NULL, "%s %s %s", send_token("SVSNOOP", "f"), server, set ? "+" : "-");
}
void unreal_cmd_svsadmin(const char *server, int set)
{
- ircd_proto.cmd_svsnoop(server, set);
+ ircd_proto.SendSVSNOOP(server, set);
}
-void UnrealIRCdProto::cmd_remove_akill(const char *user, const char *host)
+void UnrealIRCdProto::SendAkillDel(const char *user, const char *host)
{
send_cmd(NULL, "%s - G %s %s %s", send_token("TKL", "BD"), user, host, s_OperServ);
}
@@ -498,7 +498,7 @@ void UnrealIRCdProto::cmd_topic(const char *whosets, const char *chan, const cha
send_cmd(whosets, "%s %s %s %lu :%s", send_token("TOPIC", ")"), chan, whosetit, static_cast<unsigned long>(when), topic);
}
-void UnrealIRCdProto::cmd_vhost_off(User *u)
+void UnrealIRCdProto::SendVhostDel(User *u)
{
if (UseSVS2MODE) send_cmd(s_HostServ, "%s %s -xt", send_token("SVS2MODE", "v"), u->nick);
else send_cmd(s_HostServ, "%s %s -xt", send_token("SVSMODE", "n"), u->nick);