mirror of
https://github.com/anope/anope.git
synced 2026-07-06 00:33:14 +02:00
Replaced anope_SendSVSHoldDel() with direct call to SendSVSHoldDel() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1357 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -466,7 +466,7 @@ void BahamutIRCdProto::SendSVSHold(const char *nick)
|
||||
}
|
||||
|
||||
/* SVSHOLD - release */
|
||||
void BahamutIRCdProto::SendSVSHOLDDel(const char *nick)
|
||||
void BahamutIRCdProto::SendSVSHoldDel(const char *nick)
|
||||
{
|
||||
send_cmd(ServerName, "SVSHOLD %s 0", nick);
|
||||
}
|
||||
|
||||
@@ -77,7 +77,7 @@ class BahamutIRCdProto : public IRCDProto {
|
||||
void SendSQLine(const char *, const char *);
|
||||
void SendConnect();
|
||||
void SendSVSHold(const char *);
|
||||
void SendSVSHOLDDel(const char *);
|
||||
void SendSVSHoldDel(const char *);
|
||||
void SendSGLineDel(const char *);
|
||||
void SendSZLineDel(const char *);
|
||||
void SendSZLine(const char *, const char *, const char *);
|
||||
|
||||
@@ -1132,7 +1132,7 @@ void CharybdisProto::SendSVSHold(const char *nick)
|
||||
}
|
||||
|
||||
/* SVSHOLD - release */
|
||||
void CharybdisProto::SendSVSHOLDDel(const char *nick)
|
||||
void CharybdisProto::SendSVSHoldDel(const char *nick)
|
||||
{
|
||||
send_cmd(NULL, "ENCAP * NICKDELAY 0 %s", nick);
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ class CharybdisProto : public IRCDTS6Proto {
|
||||
void SendVhost(const char *, const char *, const char *);
|
||||
void SendConnect();
|
||||
void SendSVSHold(const char *);
|
||||
void SendSVSHOLDDel(const char *);
|
||||
void SendSVSHoldDel(const char *);
|
||||
void SendSGLineDel(const char *);
|
||||
void SendSGLine(const char *, const char *);
|
||||
void SendServer(const char *, int, const char *);
|
||||
|
||||
@@ -1274,7 +1274,7 @@ void InspIRCdProto::SendSVSHold(const char *nick)
|
||||
}
|
||||
|
||||
/* SVSHOLD - release */
|
||||
void InspIRCdProto::SendSVSHOLDDel(const char *nick)
|
||||
void InspIRCdProto::SendSVSHoldDel(const char *nick)
|
||||
{
|
||||
send_cmd(s_OperServ, "SVSHOLD %s", nick);
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ class InspIRCdProto : public IRCDProto {
|
||||
void SendVhost(const char *, const char *, const char *);
|
||||
void SendConnect();
|
||||
void SendSVSHold(const char *);
|
||||
void SendSVSHOLDDel(const char *);
|
||||
void SendSVSHoldDel(const char *);
|
||||
void SendSZLineDel(const char *);
|
||||
void SendSZLine(const char *, const char *, const char *);
|
||||
void SendUnregisteredNick(User *);
|
||||
|
||||
@@ -1124,7 +1124,7 @@ void UnrealIRCdProto::SendSVSHold(const char *nick)
|
||||
}
|
||||
|
||||
/* SVSHOLD - release */
|
||||
void UnrealIRCdProto::SendSVSHOLDDel(const char *nick)
|
||||
void UnrealIRCdProto::SendSVSHoldDel(const char *nick)
|
||||
{
|
||||
send_cmd(NULL, "%s - Q * %s %s", send_token("TKL", "BD"), nick, ServerName);
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@ class UnrealIRCdProto : public IRCDProto {
|
||||
void SendVhost(const char *, const char *, const char *);
|
||||
void SendConnect();
|
||||
void SendSVSHold(const char *);
|
||||
void SendSVSHOLDDel(const char *);
|
||||
void SendSVSHoldDel(const char *);
|
||||
void SendSGLineDel(const char *);
|
||||
void SendSZLineDel(const char *);
|
||||
void SendSZLine(const char *, const char *, const char *);
|
||||
|
||||
Reference in New Issue
Block a user