diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 18:22:11 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 18:22:11 +0000 |
commit | c76bb1695fce08aa75ad6ba706cb203e28b75652 (patch) | |
tree | 2c97bda426ddd831f269cc1e4deef3e583ea0eca /src/inspircd.cpp | |
parent | a51984ba6fe32bde391f961d4ff52628b768d346 (diff) |
Shuffling stuff about
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2439 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index baabe90e3..d4a4c85cb 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -62,10 +62,10 @@ using namespace std; #include "dns.h" #include "typedefs.h" +InspIRCd* ServerInstance; + int WHOWAS_STALE = 48; // default WHOWAS Entries last 2 days before they go 'stale' int WHOWAS_MAX = 100; // default 100 people maximum in the WHOWAS list -int DieDelay = 5; -time_t startup_time = time(NULL); extern std::vector<Module*> modules; extern std::vector<ircd_module*> factory; @@ -430,6 +430,7 @@ void kill_link_silent(userrec *user,const char* r) InspIRCd::InspIRCd(int argc, char** argv) { Start(); + this->startup_time = time(NULL); srand(time(NULL)); log(DEBUG,"*** InspIRCd starting up!"); if (!FileExists(CONFIG_FILE)) @@ -1703,9 +1704,9 @@ int InspIRCd::Run() int main(int argc, char** argv) { - InspIRCd* TittyBiscuits = new InspIRCd(argc, argv); - TittyBiscuits->Run(); - delete TittyBiscuits; + ServerInstance = new InspIRCd(argc, argv); + ServerInstance->Run(); + delete ServerInstance; return 0; } |