diff options
| author | 2026-03-02 21:02:25 +0000 | |
|---|---|---|
| committer | 2026-03-02 21:09:27 +0000 | |
| commit | c08217dffc8cf395dd29e8a3a32dfc559c129901 (patch) | |
| tree | 3188b13ea5ef4a9a69dc9c066e2108d69f6f9124 /src/configreader.cpp | |
| parent | Massive rework of how internal service providers work. (diff) | |
Load the swhois module if a config contains the swhois_ext module.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 55e5603be..e101e92fd 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -710,6 +710,8 @@ std::vector<std::string> ServerConfig::GetModules() const modules.push_back("sacommands"); else if (insp::equalsci(shortname, "sslrehashsignal")) modules.push_back("rehashsignal"); + else if (insp::equalsci(shortname, "swhois_ext")) + modules.push_back("swhois"); else { // No need to rewrite this module name. |
