]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
4c19878d74c36b104d4505229ebccde68af32a5f
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "configreader.h"
16 #include <signal.h>
17
18 #ifndef WIN32
19         #include <dirent.h>
20         #include <unistd.h>
21         #include <sys/resource.h>
22         #include <dlfcn.h>
23         #include <getopt.h>
24
25         /* Some systems don't define RUSAGE_SELF. This should fix them. */
26         #ifndef RUSAGE_SELF
27                 #define RUSAGE_SELF 0
28         #endif
29 #endif
30
31 #include <exception>
32 #include <fstream>
33 #include "modules.h"
34 #include "mode.h"
35 #include "xline.h"
36 #include "socketengine.h"
37 #include "inspircd_se_config.h"
38 #include "socket.h"
39 #include "typedefs.h"
40 #include "command_parse.h"
41 #include "exitcodes.h"
42 #include "caller.h"
43
44 using irc::sockets::NonBlocking;
45 using irc::sockets::Blocking;
46 using irc::sockets::insp_ntoa;
47 using irc::sockets::insp_inaddr;
48 using irc::sockets::insp_sockaddr;
49
50 InspIRCd* SI = NULL;
51 int* mysig = NULL;
52
53
54 /* Burlex: Moved from exitcodes.h -- due to duplicate symbols */
55 const char* ExitCodes[] =
56 {
57                 "No error", /* 0 */
58                 "DIE command", /* 1 */
59                 "execv() failed", /* 2 */
60                 "Internal error", /* 3 */
61                 "Config file error", /* 4 */
62                 "Logfile error", /* 5 */
63                 "POSIX fork failed", /* 6 */
64                 "Bad commandline parameters", /* 7 */
65                 "No ports could be bound", /* 8 */
66                 "Can't write PID file", /* 9 */
67                 "SocketEngine could not initialize", /* 10 */
68                 "Refusing to start up as root", /* 11 */
69                 "Found a <die> tag!", /* 12 */
70                 "Couldn't load module on startup", /* 13 */
71                 "Could not create windows forked process", /* 14 */
72                 "Received SIGTERM", /* 15 */
73 };
74
75 void InspIRCd::Cleanup()
76 {
77         std::vector<std::string> mymodnames;
78         int MyModCount = this->GetModuleCount();
79
80         if (Config)
81         {
82                 for (unsigned int i = 0; i < Config->ports.size(); i++)
83                 {
84                         /* This calls the constructor and closes the listening socket */
85                         delete Config->ports[i];
86                 }
87
88                 Config->ports.clear();
89         }
90
91         /* Close all client sockets, or the new process inherits them */
92         for (std::vector<userrec*>::const_iterator i = this->local_users.begin(); i != this->local_users.end(); i++)
93         {
94                 (*i)->SetWriteError("Server shutdown");
95                 (*i)->CloseSocket();
96         }
97
98         /* We do this more than once, so that any service providers get a
99          * chance to be unhooked by the modules using them, but then get
100          * a chance to be removed themsleves.
101          */
102         for (int tries = 0; tries < 3; tries++)
103         {
104                 MyModCount = this->GetModuleCount();
105                 mymodnames.clear();
106
107                 if (MyModCount)
108                 {
109                         /* Unload all modules, so they get a chance to clean up their listeners */
110                         for (int j = 0; j <= MyModCount; j++)
111                                 mymodnames.push_back(Config->module_names[j]);
112
113                         for (int k = 0; k <= MyModCount; k++)
114                                 this->UnloadModule(mymodnames[k].c_str());
115                 }
116         }
117
118         /* Close logging */
119         if (this->Logger)
120                 this->Logger->Close();
121
122         /* Cleanup Server Names */
123         for(servernamelist::iterator itr = servernames.begin(); itr != servernames.end(); ++itr)
124                 delete (*itr);
125
126 #ifdef WINDOWS
127         /* WSACleanup */
128         WSACleanup();
129 #endif
130 }
131
132 void InspIRCd::Restart(const std::string &reason)
133 {
134         /* SendError flushes each client's queue,
135          * regardless of writeability state
136          */
137         this->SendError(reason);
138
139         this->Cleanup();
140
141         /* Figure out our filename (if theyve renamed it, we're boned) */
142         std::string me;
143
144 #ifdef WINDOWS
145         char module[MAX_PATH];
146         if (GetModuleFileName(NULL, module, MAX_PATH))
147                 me = module;
148 #else
149         me = Config->MyDir + "/inspircd";
150 #endif
151
152         if (execv(me.c_str(), Config->argv) == -1)
153         {
154                 /* Will raise a SIGABRT if not trapped */
155                 throw CoreException(std::string("Failed to execv()! error: ") + strerror(errno));
156         }
157 }
158
159 void InspIRCd::ResetMaxBans()
160 {
161         for (chan_hash::const_iterator i = chanlist->begin(); i != chanlist->end(); i++)
162                 i->second->ResetMaxBans();
163 }
164
165 /** Because hash_map doesnt free its buckets when we delete items (this is a 'feature')
166  * we must occasionally rehash the hash (yes really).
167  * We do this by copying the entries from the old hash to a new hash, causing all
168  * empty buckets to be weeded out of the hash. We dont do this on a timer, as its
169  * very expensive, so instead we do it when the user types /REHASH and expects a
170  * short delay anyway.
171  */
172 void InspIRCd::RehashUsersAndChans()
173 {
174         user_hash* old_users = this->clientlist;
175         chan_hash* old_chans = this->chanlist;
176
177         this->clientlist = new user_hash();
178         this->chanlist = new chan_hash();
179
180         for (user_hash::const_iterator n = old_users->begin(); n != old_users->end(); n++)
181                 this->clientlist->insert(*n);
182
183         delete old_users;
184
185         for (chan_hash::const_iterator n = old_chans->begin(); n != old_chans->end(); n++)
186                 this->chanlist->insert(*n);
187
188         delete old_chans;
189 }
190
191 void InspIRCd::CloseLog()
192 {
193         if (this->Logger)
194                 this->Logger->Close();
195 }
196
197 void InspIRCd::SetSignals()
198 {
199 #ifndef WIN32
200         signal(SIGALRM, SIG_IGN);
201         signal(SIGHUP, InspIRCd::SetSignal);
202         signal(SIGPIPE, SIG_IGN);
203         signal(SIGCHLD, SIG_IGN);
204 #endif
205         signal(SIGTERM, InspIRCd::SetSignal);
206 }
207
208 void InspIRCd::QuickExit(int status)
209 {
210         exit(0);
211 }
212
213 bool InspIRCd::DaemonSeed()
214 {
215 #ifdef WINDOWS
216         printf_c("InspIRCd Process ID: \033[1;32m%lu\033[0m\n", GetCurrentProcessId());
217         return true;
218 #else
219         signal(SIGTERM, InspIRCd::QuickExit);
220
221         int childpid;
222         if ((childpid = fork ()) < 0)
223                 return false;
224         else if (childpid > 0)
225         {
226                 /* We wait here for the child process to kill us,
227                  * so that the shell prompt doesnt come back over
228                  * the output.
229                  * Sending a kill with a signal of 0 just checks
230                  * if the child pid is still around. If theyre not,
231                  * they threw an error and we should give up.
232                  */
233                 while (kill(childpid, 0) != -1)
234                         sleep(1);
235                 exit(0);
236         }
237         setsid ();
238         umask (007);
239         printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
240
241         signal(SIGTERM, InspIRCd::SetSignal);
242
243         rlimit rl;
244         if (getrlimit(RLIMIT_CORE, &rl) == -1)
245         {
246                 this->Log(DEFAULT,"Failed to getrlimit()!");
247                 return false;
248         }
249         else
250         {
251                 rl.rlim_cur = rl.rlim_max;
252                 if (setrlimit(RLIMIT_CORE, &rl) == -1)
253                         this->Log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
254         }
255
256         return true;
257 #endif
258 }
259
260 void InspIRCd::WritePID(const std::string &filename)
261 {
262         std::string fname = (filename.empty() ? "inspircd.pid" : filename);
263         if (*(fname.begin()) != '/')
264         {
265                 std::string::size_type pos;
266                 std::string confpath = this->ConfigFileName;
267                 if ((pos = confpath.rfind("/")) != std::string::npos)
268                 {
269                         /* Leaves us with just the path */
270                         fname = confpath.substr(0, pos) + std::string("/") + fname;
271                 }
272         }
273         std::ofstream outfile(fname.c_str());
274         if (outfile.is_open())
275         {
276                 outfile << getpid();
277                 outfile.close();
278         }
279         else
280         {
281                 printf("Failed to write PID-file '%s', exiting.\n",fname.c_str());
282                 this->Log(DEFAULT,"Failed to write PID-file '%s', exiting.",fname.c_str());
283                 Exit(EXIT_STATUS_PID);
284         }
285 }
286
287 InspIRCd::InspIRCd(int argc, char** argv)
288         : ModCount(0),
289           GlobalCulls(this),
290
291          /* Functor initialisation. Note that the ordering here is very important. */
292          HandleProcessUser(this),
293          HandleIsNick(this),
294          HandleIsIdent(this),
295          HandleFindDescriptor(this),
296          HandleFloodQuitUser(this),
297
298          /* Functor pointer initialisation. Must match the order of the list above */
299          ProcessUser(&HandleProcessUser),
300          IsNick(&HandleIsNick),
301          IsIdent(&HandleIsIdent),
302          FindDescriptor(&HandleFindDescriptor),
303          FloodQuitUser(&HandleFloodQuitUser)
304
305 {
306
307         int found_ports = 0;
308         FailedPortList pl;
309         int do_version = 0, do_nofork = 0, do_debug = 0, do_nolog = 0, do_root = 0;    /* flag variables */
310         char c = 0;
311
312         modules.resize(255);
313         factory.resize(255);
314         memset(&server, 0, sizeof(server));
315         memset(&client, 0, sizeof(client));
316
317         this->s_signal = 0;
318
319         this->unregistered_count = 0;
320
321         this->clientlist = new user_hash();
322         this->chanlist = new chan_hash();
323
324         this->Config = new ServerConfig(this);
325
326         this->Config->argv = argv;
327         this->Config->argc = argc;
328
329         if (chdir(Config->GetFullProgDir().c_str()))
330         {
331                 printf("Unable to change to my directory: %s\nAborted.", strerror(errno));
332                 exit(0);
333         }
334
335         this->Config->opertypes.clear();
336         this->Config->operclass.clear();
337         this->SNO = new SnomaskManager(this);
338         this->TIME = this->OLDTIME = this->startup_time = time(NULL);
339         this->time_delta = 0;
340         this->next_call = this->TIME + 3;
341         srand(this->TIME);
342
343         *this->LogFileName = 0;
344         strlcpy(this->ConfigFileName, CONFIG_FILE, MAXBUF);
345
346         struct option longopts[] =
347         {
348                 { "nofork",     no_argument,            &do_nofork,     1       },
349                 { "logfile",    required_argument,      NULL,           'f'     },
350                 { "config",     required_argument,      NULL,           'c'     },
351                 { "debug",      no_argument,            &do_debug,      1       },
352                 { "nolog",      no_argument,            &do_nolog,      1       },
353                 { "runasroot",  no_argument,            &do_root,       1       },
354                 { "version",    no_argument,            &do_version,    1       },
355                 { 0, 0, 0, 0 }
356         };
357
358         while ((c = getopt_long_only(argc, argv, ":f:", longopts, NULL)) != -1)
359         {
360                 switch (c)
361                 {
362                         case 'f':
363                                 /* Log filename was set */
364                                 strlcpy(LogFileName, optarg, MAXBUF);
365                         break;
366                         case 'c':
367                                 /* Config filename was set */
368                                 strlcpy(ConfigFileName, optarg, MAXBUF);
369                         break;
370                         case 0:
371                                 /* getopt_long_only() set an int variable, just keep going */
372                         break;
373                         default:
374                                 /* Unknown parameter! DANGER, INTRUDER.... err.... yeah. */
375                                 printf("Usage: %s [--nofork] [--nolog] [--debug] [--logfile <filename>] [--runasroot] [--version] [--config <config>]\n", argv[0]);
376                                 Exit(EXIT_STATUS_ARGV);
377                         break;
378                 }
379         }
380
381         if (do_version)
382         {
383                 printf("\n%s r%s\n", VERSION, REVISION);
384                 Exit(EXIT_STATUS_NOERROR);
385         }
386
387 #ifdef WIN32
388
389         // Handle forking
390         if(!do_nofork)
391         {
392                 DWORD ExitCode = WindowsForkStart(this);
393                 if(ExitCode)
394                         Exit(ExitCode);
395         }
396
397         // Set up winsock
398         WSADATA wsadata;
399         WSAStartup(MAKEWORD(2,0), &wsadata);
400
401         ChangeWindowsSpecificPointers(this);
402 #endif
403         if (!ServerConfig::FileExists(this->ConfigFileName))
404         {
405                 printf("ERROR: Cannot open config file: %s\nExiting...\n", this->ConfigFileName);
406                 this->Log(DEFAULT,"Unable to open config file %s", this->ConfigFileName);
407                 Exit(EXIT_STATUS_CONFIG);
408         }
409
410         printf_c("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
411         printf_c("(C) InspIRCd Development Team.\033[0m\n\n");
412         printf_c("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om, Special, pippijn, peavey, Burlex\033[0m\n");
413         printf_c("Others:\t\t\t\033[1;32mSee /INFO Output\033[0m\n");
414
415         /* Set the finished argument values */
416         Config->nofork = do_nofork;
417         Config->forcedebug = do_debug;
418         Config->writelog = !do_nolog;
419
420         strlcpy(Config->MyExecutable,argv[0],MAXBUF);
421
422         if (!this->OpenLog(argv, argc))
423         {
424                 printf("ERROR: Could not open logfile %s: %s\n\n", Config->logpath.c_str(), strerror(errno));
425                 Exit(EXIT_STATUS_LOG);
426         }
427
428         this->stats = new serverstats();
429         this->Timers = new TimerManager(this);
430         this->Parser = new CommandParser(this);
431         this->XLines = new XLineManager(this);
432         Config->ClearStack();
433         Config->Read(true, NULL);
434
435         if (!do_root)
436                 this->CheckRoot();
437         else
438         {
439                 printf("* WARNING * WARNING * WARNING * WARNING * WARNING * \n\n");
440                 printf("YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED\n");
441                 printf("AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED\n");
442                 printf("OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR\n");
443                 printf("SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN\n");
444                 printf("TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART\n");
445                 printf("THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!\n");
446                 printf("\nInspIRCd starting in 20 seconds, ctrl+c to abort...\n");
447                 sleep(20);
448         }
449
450         this->SetSignals();
451
452         if (!Config->nofork)
453         {
454                 if (!this->DaemonSeed())
455                 {
456                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
457                         Log(DEFAULT,"ERROR: could not go into daemon mode. Shutting down.");
458                         Exit(EXIT_STATUS_FORK);
459                 }
460         }
461
462
463         /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
464          * initialize the socket engine.
465          */
466         SocketEngineFactory* SEF = new SocketEngineFactory();
467         SE = SEF->Create(this);
468         delete SEF;
469
470         this->Modes = new ModeParser(this);
471         this->AddServerName(Config->ServerName);
472         CheckDie();
473         int bounditems = BindPorts(true, found_ports, pl);
474
475         for(int t = 0; t < 255; t++)
476                 Config->global_implementation[t] = 0;
477
478         memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
479
480         printf("\n");
481
482         this->Res = new DNS(this);
483
484         this->LoadAllModules();
485         /* Just in case no modules were loaded - fix for bug #101 */
486         this->BuildISupport();
487         InitializeDisabledCommands(Config->DisabledCommands, this);
488
489         if ((Config->ports.size() == 0) && (found_ports > 0))
490         {
491                 printf("\nERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
492                 Log(DEFAULT,"ERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?");
493                 Exit(EXIT_STATUS_BIND);
494         }
495
496         if (Config->ports.size() != (unsigned int)found_ports)
497         {
498                 printf("\nWARNING: Not all your client ports could be bound --\nstarting anyway with %d of %d client ports bound.\n\n", bounditems, found_ports);
499                 printf("The following port(s) failed to bind:\n");
500                 int j = 1;
501                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
502                 {
503                         printf("%d.\tIP: %s\tPort: %lu\n", j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
504                 }
505         }
506 #ifndef WINDOWS
507         if (!Config->nofork)
508         {
509                 if (kill(getppid(), SIGTERM) == -1)
510                 {
511                         printf("Error killing parent process: %s\n",strerror(errno));
512                         Log(DEFAULT,"Error killing parent process: %s",strerror(errno));
513                 }
514         }
515
516         if (isatty(0) && isatty(1) && isatty(2))
517         {
518                 /* We didn't start from a TTY, we must have started from a background process -
519                  * e.g. we are restarting, or being launched by cron. Dont kill parent, and dont
520                  * close stdin/stdout
521                  */
522                 if (!do_nofork)
523                 {
524                         fclose(stdin);
525                         fclose(stderr);
526                         fclose(stdout);
527                 }
528                 else
529                 {
530                         Log(DEFAULT,"Keeping pseudo-tty open as we are running in the foreground.");
531                 }
532         }
533 #else
534         WindowsIPC = new IPC(this);
535         if(!Config->nofork)
536         {
537                 WindowsForkKillOwner(this);
538                 FreeConsole();
539         }
540 #endif
541         printf("\nInspIRCd is now running!\n");
542         Log(DEFAULT,"Startup complete.");
543
544         this->WritePID(Config->PID);
545 }
546
547 void InspIRCd::DoOneIteration(bool process_module_sockets)
548 {
549 #ifndef WIN32
550         static rusage ru;
551 #else
552         static time_t uptime;
553         static struct tm * stime;
554         static char window_title[100];
555 #endif
556
557         /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
558          * Once per loop iteration is pleanty.
559          */
560         OLDTIME = TIME;
561         TIME = time(NULL);
562
563         /* Run background module timers every few seconds
564          * (the docs say modules shouldnt rely on accurate
565          * timing using this event, so we dont have to
566          * time this exactly).
567          */
568         if (TIME != OLDTIME)
569         {
570                 if (TIME < OLDTIME)
571                         WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
572                 if ((TIME % 3600) == 0)
573                 {
574                         this->RehashUsersAndChans();
575                         FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect());
576                 }
577                 Timers->TickTimers(TIME);
578                 this->DoBackgroundUserStuff(TIME);
579
580                 if ((TIME % 5) == 0)
581                 {
582                         XLines->expire_lines();
583                         FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
584                         Timers->TickMissedTimers(TIME);
585                 }
586 #ifndef WIN32
587                 /* Same change as in cmd_stats.cpp, use RUSAGE_SELF rather than '0' -- Om */
588                 if (!getrusage(RUSAGE_SELF, &ru))
589                 {
590                         gettimeofday(&this->stats->LastSampled, NULL);
591                         this->stats->LastCPU = ru.ru_utime;
592                 }
593 #else
594                 WindowsIPC->Check();
595
596                 if(Config->nofork)
597                 {
598                         uptime = Time() - startup_time;
599                         stime = gmtime(&uptime);
600                         snprintf(window_title, 100, "InspIRCd - %u clients, %u accepted connections - Up %u days, %.2u:%.2u:%.2u",
601                                 LocalUserCount(), stats->statsAccept, stime->tm_yday, stime->tm_hour, stime->tm_min, stime->tm_sec);
602                         SetConsoleTitle(window_title);
603                 }
604 #endif
605         }
606
607         /* Call the socket engine to wait on the active
608          * file descriptors. The socket engine has everything's
609          * descriptors in its list... dns, modules, users,
610          * servers... so its nice and easy, just one call.
611          * This will cause any read or write events to be
612          * dispatched to their handlers.
613          */
614         this->SE->DispatchEvents();
615
616         /* if any users was quit, take them out */
617         this->GlobalCulls.Apply();
618
619         /* If any inspsockets closed, remove them */
620         this->InspSocketCull();
621
622         if (this->s_signal)
623         {
624                 this->SignalHandler(s_signal);
625                 this->s_signal = 0;
626         }
627
628 }
629
630 void InspIRCd::InspSocketCull()
631 {
632         for (std::map<InspSocket*,InspSocket*>::iterator x = SocketCull.begin(); x != SocketCull.end(); ++x)
633         {
634                 SE->DelFd(x->second);
635                 x->second->Close();
636                 delete x->second;
637         }
638         SocketCull.clear();
639 }
640
641 int InspIRCd::Run()
642 {
643         while (true)
644         {
645                 DoOneIteration(true);
646         }
647         /* This is never reached -- we hope! */
648         return 0;
649 }
650
651 /**********************************************************************************/
652
653 /**
654  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
655  */
656
657 int main(int argc, char** argv)
658 {
659         SI = new InspIRCd(argc, argv);
660         mysig = &SI->s_signal;
661         SI->Run();
662         delete SI;
663         return 0;
664 }
665
666 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
667  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
668  * registration timeout maximum seconds)
669  */
670 bool InspIRCd::AllModulesReportReady(userrec* user)
671 {
672         if (!Config->global_implementation[I_OnCheckReady])
673                 return true;
674
675         for (int i = 0; i <= this->GetModuleCount(); i++)
676         {
677                 if (Config->implement_lists[i][I_OnCheckReady])
678                 {
679                         int res = modules[i]->OnCheckReady(user);
680                         if (!res)
681                                 return false;
682                 }
683         }
684         return true;
685 }
686
687 int InspIRCd::GetModuleCount()
688 {
689         return this->ModCount;
690 }
691
692 time_t InspIRCd::Time(bool delta)
693 {
694         if (delta)
695                 return TIME + time_delta;
696         return TIME;
697 }
698
699 int InspIRCd::SetTimeDelta(int delta)
700 {
701         int old = time_delta;
702         time_delta = delta;
703         this->Log(DEBUG, "Time delta set to %d (was %d)", time_delta, old);
704         return old;
705 }
706
707 void InspIRCd::AddLocalClone(userrec* user)
708 {
709         clonemap::iterator x = local_clones.find(user->GetIPString());
710         if (x != local_clones.end())
711                 x->second++;
712         else
713                 local_clones[user->GetIPString()] = 1;
714 }
715
716 void InspIRCd::AddGlobalClone(userrec* user)
717 {
718         clonemap::iterator y = global_clones.find(user->GetIPString());
719         if (y != global_clones.end())
720                 y->second++;
721         else
722                 global_clones[user->GetIPString()] = 1;
723 }
724
725 int InspIRCd::GetTimeDelta()
726 {
727         return time_delta;
728 }
729
730 void InspIRCd::SetSignal(int signal)
731 {
732         *mysig = signal;
733 }
734