X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fserver.cpp;h=c5223561a4ee18d6e274b0e597a392e5904761ea;hb=da1010f4077eae5d1602c9fe7d74a2426387b8b2;hp=f69b4fd3bd745d1a9cb9ff94b4f5057a3d11a171;hpb=519d8e5dfe379840ae5da2ac43231ec4364d7b18;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/server.cpp b/src/server.cpp index f69b4fd3b..c5223561a 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -11,11 +11,12 @@ * --------------------------------------------------- */ -/* $Core: libIRCDserver */ +/* $Core */ #include #include "exitcodes.h" #include "inspircd.h" +#include "inspircd_version.h" void InspIRCd::SignalHandler(int signal) @@ -23,7 +24,7 @@ void InspIRCd::SignalHandler(int signal) switch (signal) { case SIGHUP: - Rehash(); + Rehash("due to SIGHUP"); break; case SIGTERM: Exit(signal); @@ -34,7 +35,9 @@ void InspIRCd::SignalHandler(int signal) void InspIRCd::Exit(int status) { #ifdef WINDOWS - delete WindowsIPC; + if (WindowsIPC) + delete WindowsIPC; + SetServiceStopped(status); #endif if (this) { @@ -44,33 +47,21 @@ 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 = ""; - - ConfigThread = new ConfigReaderThread(this, false, NULL); - Threads->Create(ConfigThread); + Server->ConfigThread = new ConfigReaderThread(Server, ""); + Server->Threads->Start(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 +69,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; } @@ -91,9 +82,9 @@ void InspIRCd::BuildISupport() { // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it... std::stringstream v; - v << "WALLCHOPS WALLVOICES MODES=" << MAXMODES << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << NICKMAX-1; - v << " CASEMAPPING=rfc1459 STATUSMSG=@" << (this->Config->AllowHalfop ? "%" : "") << "+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=" << Config->MaxTargets; - v << " AWAYLEN=" << MAXAWAY << " CHANMODES=" << this->Modes->ChanModes() << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU"; + v << "WALLCHOPS WALLVOICES MODES=" << Config->Limits.MaxModes - 1 << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << Config->Limits.NickMax - 1; + v << " CASEMAPPING=rfc1459 STATUSMSG=@" << (this->Config->AllowHalfop ? "%" : "") << "+ CHARSET=ascii TOPICLEN=" << Config->Limits.MaxTopic - 1 << " KICKLEN=" << Config->Limits.MaxKick - 1 << " MAXTARGETS=" << Config->MaxTargets - 1; + v << " AWAYLEN=" << Config->Limits.MaxAway - 1 << " CHANMODES=" << this->Modes->GiveModeList(MASK_CHANNEL) << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU"; Config->data005 = v.str(); FOREACH_MOD_I(this,I_On005Numeric,On005Numeric(Config->data005)); Config->Update005(); @@ -153,7 +144,7 @@ void InspIRCd::IncrementUID(int pos) for (int i = 3; i < UUID_LENGTH; i++) { current_uid[i] = 'A'; - pos = UUID_LENGTH - 1; + pos = UUID_LENGTH - 1; } } else @@ -206,13 +197,13 @@ std::string InspIRCd::GetUID() current_uid[1] = Config->sid[1]; current_uid[2] = Config->sid[2]; - for (int i = 3; i < UUID_LENGTH; i++) + for (int i = 3; i < (UUID_LENGTH - 1); i++) current_uid[i] = '9'; - curindex = UUID_LENGTH - 1; // look at the end of the string now kthx + curindex = UUID_LENGTH - 2; // look at the end of the string now kthx, ignore null // Null terminator. Important. - current_uid[UUID_LENGTH] = '\0'; + current_uid[UUID_LENGTH - 1] = '\0'; } while (1)