diff options
| author | 2025-03-19 15:21:48 +0000 | |
|---|---|---|
| committer | 2025-03-19 16:17:12 +0000 | |
| commit | 397cc54f01ad1a2b8c4b26aeae7611a6699432b9 (patch) | |
| tree | b11774c19c6ffa9d34a6ca4c6877dc455b30b412 /src/configreader.cpp | |
| parent | Add the cloak_custom module. (diff) | |
Allow using signals to rehash any module instead of just TLS.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 6d4ba373a..31b1f5a04 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -679,6 +679,9 @@ std::vector<std::string> ServerConfig::GetModules() const } // Rewrite the old names of renamed modules. + if (insp::equalsci(shortname, "sslrehashsignal")) + modules.push_back("rehashsignal"); + else { // No need to rewrite this module name. modules.push_back(shortname); |
