summaryrefslogtreecommitdiff
path: root/modules/m_sasl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/m_sasl.cpp')
-rw-r--r--modules/m_sasl.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/m_sasl.cpp b/modules/m_sasl.cpp
index 98a554259..1d60561fe 100644
--- a/modules/m_sasl.cpp
+++ b/modules/m_sasl.cpp
@@ -266,6 +266,21 @@ class ModuleSASL : public Module
Plain plain;
External *external;
+ std::vector<Anope::string> mechs;
+
+ void CheckMechs()
+ {
+ std::vector<Anope::string> newmechs = ::Service::GetServiceKeys("SASL::Mechanism");
+ if (newmechs == mechs)
+ return;
+
+ mechs = newmechs;
+
+ // If we are connected to the network then broadcast the mechlist.
+ if (Me && Me->IsSynced())
+ IRCD->SendSASLMechanisms(mechs);
+ }
+
public:
ModuleSASL(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
sasl(this), plain(this), external(NULL)
@@ -273,6 +288,7 @@ class ModuleSASL : public Module
try
{
external = new External(this);
+ CheckMechs();
}
catch (ModuleException &) { }
}
@@ -281,6 +297,22 @@ class ModuleSASL : public Module
{
delete external;
}
+
+ void OnModuleLoad(User *, Module *) anope_override
+ {
+ CheckMechs();
+ }
+
+ void OnModuleUnload(User *, Module *) anope_override
+ {
+ CheckMechs();
+ }
+
+ void OnPreUplinkSync(Server *) anope_override
+ {
+ // We have not yet sent a mechanism list so always do it here.
+ IRCD->SendSASLMechanisms(mechs);
+ }
};
MODULE_INIT(ModuleSASL)