diff options
| author | 2019-02-05 17:26:19 +0000 | |
|---|---|---|
| committer | 2019-02-05 17:26:19 +0000 | |
| commit | 01451ab26ef427267effead17d526d2b20fd3e8b (patch) | |
| tree | b90c0611b7abc8756d1720ae9f9f1bc40df4f47a /src/inspircd.cpp | |
| parent | Delete the old broken test suite. (diff) | |
| download | inspircd++-01451ab26ef427267effead17d526d2b20fd3e8b.tar.gz inspircd++-01451ab26ef427267effead17d526d2b20fd3e8b.tar.bz2 inspircd++-01451ab26ef427267effead17d526d2b20fd3e8b.zip | |
Quit users during cleanup instead of when /DIE is executed.
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 94132cf95..b6c252104 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -94,6 +94,12 @@ void InspIRCd::Cleanup() } ports.clear(); + // Disconnect all local users + const std::string quitmsg = "Server shutting down"; + const UserManager::LocalList& list = Users.GetLocalUsers(); + while (!list.empty()) + ServerInstance->Users.QuitUser(list.front(), quitmsg); + GlobalCulls.Apply(); Modules->UnloadAll(); |
