mirror of
https://github.com/anope/anope.git
synced 2026-06-27 17:46:39 +02:00
Keep track on what ircds we can svsjoin, add an svspart method
This commit is contained in:
@@ -151,6 +151,16 @@ class PlexusProto : public IRCDProto
|
||||
{
|
||||
UplinkSocket::Message(bi) << "ENCAP * TOPIC " << c->name << " " << c->topic_setter << " " << c->topic_ts << " :" << c->topic;
|
||||
}
|
||||
|
||||
void SendSVSJoin(const BotInfo *source, const User *user, const Anope::string &chan, const Anope::string ¶m) anope_override
|
||||
{
|
||||
UplinkSocket::Message(source) << "ENCAP " << user->server->GetSID() << " SVSJOIN " << user->GetUID() << " " << chan;
|
||||
}
|
||||
|
||||
void SendSVSPart(const BotInfo *source, const User *user, const Anope::string &chan, const Anope::string ¶m) anope_override
|
||||
{
|
||||
UplinkSocket::Message(source) << "ENCAP " << user->server->GetSID() << " SVSPART " << user->GetUID() << " " << chan;
|
||||
}
|
||||
};
|
||||
|
||||
struct IRCDMessageEncap : IRCDMessage
|
||||
|
||||
Reference in New Issue
Block a user