1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 06:23:14 +02:00

InspIRCd 2.0: Re-set server-side mlock when an incoming METADATA mlock from a bursting server changes it

This commit is contained in:
Attila Molnar
2014-11-05 00:10:01 +01:00
parent 72ade225a7
commit e47aacad0e
+20
View File
@@ -858,6 +858,26 @@ class IRCDMessageMetadata : IRCDMessage
void Run(MessageSource &source, const std::vector<Anope::string> &params) anope_override
{
// We deliberately ignore non-bursting servers to avoid pseudoserver fights
if ((params[0][0] == '#') && (!source.GetServer()->IsSynced()))
{
Channel *c = Channel::Find(params[0]);
if (c && c->ci)
{
if ((do_mlock) && (params[1] == "mlock"))
{
ModeLocks *modelocks = c->ci->GetExt<ModeLocks>("modelocks");
Anope::string modes;
if (modelocks)
modes = modelocks->GetMLockAsString(false).replace_all_cs("+", "").replace_all_cs("-", "");
// Mode lock string is not what we say it is?
if (modes != params[2])
UplinkSocket::Message(Me) << "METADATA " << c->name << " mlock :" << modes;
}
}
}
if (insp12_metadata)
insp12_metadata->Run(source, params);
}