]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/server.cpp
Fix quietbans and hidesplits etc, cull list's sending a seperate quit message to...
[user/henk/code/inspircd.git] / src / server.cpp
index d0023edd453e838b9bce5b54932a78077d24abdc..ae1d106b8b7b7da4b13cf311cf35df7c2ade8dc0 100644 (file)
@@ -23,7 +23,7 @@ void InspIRCd::SignalHandler(int signal)
        switch (signal)
        {
                case SIGHUP:
-                       Rehash();
+                       Rehash("due to SIGHUP");
                        break;
                case SIGTERM:
                        Exit(signal);
@@ -34,7 +34,8 @@ void InspIRCd::SignalHandler(int signal)
 void InspIRCd::Exit(int status)
 {
 #ifdef WINDOWS
-       delete WindowsIPC;
+       if (WindowsIPC)
+               delete WindowsIPC;
 #endif
        if (this)
        {
@@ -44,33 +45,24 @@ void InspIRCd::Exit(int status)
        exit (status);
 }
 
-void InspIRCd::Rehash()
+void RehashHandler::Call(const std::string &reason)
 {
-       this->SNO->WriteToSnoMask('A', "Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(this->ConfigFileName));
-       this->RehashUsersAndChans();
-       FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect());
-       if (!this->ConfigThread)
+       Server->SNO->WriteToSnoMask('A', "Rehashing config file %s %s",ServerConfig::CleanFilename(Server->ConfigFileName), reason.c_str());
+       Server->RehashUsersAndChans();
+       FOREACH_MOD_I(Server, I_OnGarbageCollect, OnGarbageCollect());
+       if (!Server->ConfigThread)
        {
-               Config->RehashUser = NULL;
-               Config->RehashParameter = "";
+               Server->Config->RehashUser = NULL;
+               Server->Config->RehashParameter = "";
 
-               ConfigThread = new ConfigReaderThread(this, false, NULL);
-               Threads->Create(ConfigThread);
+               Server->ConfigThread = new ConfigReaderThread(Server, false, NULL);
+               Server->Threads->Create(Server->ConfigThread);
        }
 }
 
 void InspIRCd::RehashServer()
 {
-       this->SNO->WriteToSnoMask('A', "Rehashing config file");
-       this->RehashUsersAndChans();
-       if (!this->ConfigThread)
-       {
-               Config->RehashUser = NULL;
-               Config->RehashParameter = "";
-
-               ConfigThread = new ConfigReaderThread(this, false, NULL);
-               Threads->Create(ConfigThread);
-       }
+       this->Rehash("");
 }
 
 std::string InspIRCd::GetVersionString()
@@ -78,11 +70,11 @@ std::string InspIRCd::GetVersionString()
        char versiondata[MAXBUF];
        if (*Config->CustomVersion)
        {
-               snprintf(versiondata,MAXBUF,"%s %s :%s",VERSION,Config->ServerName,Config->CustomVersion);
+               snprintf(versiondata,MAXBUF,"InspIRCd-1.2 %s :%s",Config->ServerName,Config->CustomVersion);
        }
        else
        {
-               snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%s,%s,%s]",VERSION,Config->ServerName,SYSTEM,REVISION,SE->GetName().c_str(),Config->sid);
+               snprintf(versiondata,MAXBUF,"InspIRCd-1.2 %s :%s (%s) [FLAGS=%s,%s,%s]",Config->ServerName,SYSTEM,VERSION,REVISION,SE->GetName().c_str(),Config->sid);
        }
        return versiondata;
 }