SSL modules: send SNOTICE upon successful rehash.

This commit is contained in:
Matt Schatz 2019-11-13 07:28:12 -07:00 committed by P. Powell
parent fe87ef1967
commit 05066eb189
3 changed files with 3 additions and 0 deletions

View File

@ -1365,6 +1365,7 @@ class ModuleSSLGnuTLS : public Module
try
{
ReadProfiles();
ServerInstance->SNO->WriteToSnoMask('a', "SSL module %s rehashed.", MODNAME);
}
catch (ModuleException& ex)
{

View File

@ -932,6 +932,7 @@ class ModuleSSLmbedTLS : public Module
try
{
ReadProfiles();
ServerInstance->SNO->WriteToSnoMask('a', "SSL module %s rehashed.", MODNAME);
}
catch (ModuleException& ex)
{

View File

@ -1055,6 +1055,7 @@ class ModuleSSLOpenSSL : public Module
try
{
ReadProfiles();
ServerInstance->SNO->WriteToSnoMask('a', "SSL module %s rehashed.", MODNAME);
}
catch (ModuleException& ex)
{