diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-23 14:19:33 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-23 14:19:33 +0000 |
commit | 529c6acc0177651e0b01cc6d7dcb7509fce17d14 (patch) | |
tree | af36cb6a39faf8442a7cb7bab162c13f0531c53e /src/inspircd.cpp | |
parent | 371daf9928def23164b49b39ced1d3cdeb9225b8 (diff) |
Unload as many modules as we can on restart, and close listeners
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6068 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 670fb5ef7..786ff97b2 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -68,8 +68,28 @@ void InspIRCd::Exit(int status) void InspIRCd::Restart(const std::string &reason) { + std::vector<std::string> mymodnames; + int MyModCount = ModCount; + this->SendError(reason); + + this->Log(DEBUG,"Closing listening client sockets..."); + for (unsigned int i = 0; i < stats->BoundPortCount; i++) + /* This calls the constructor and closes the listening socket */ + delete Config->openSockfd[i]; + + /* Unload all modules, so they get a chance to clean up their listeners */ + for (int j = 0; j < ModCount; j++) + mymodnames.push_back(Config->module_names[j]); + + this->Log(DEBUG,"Unloading modules..."); + for (int k = 0; k < MyModCount; k++) + this->UnloadModule(mymodnames[k].c_str()); + std::string me = Config->MyDir + "/inspircd"; + + this->Log(DEBUG,"Closing log and calling execv to start new instance of '%s'...", me.c_str()); + this->Logger->Close(); if (execv(me.c_str(), Config->argv) == -1) { |