]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_die.cpp
bc8f5809984f2551971bbfc3522d0f43f36799df
[user/henk/code/inspircd.git] / src / cmd_die.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include "inspircd_config.h"
20 #include "inspircd.h"
21 #include "inspircd_io.h"
22 #include <time.h>
23 #include <string>
24 #include "users.h"
25 #include "ctables.h"
26 #include "globals.h"
27 #include "wildcard.h"
28 #include "message.h"
29 #include "commands.h"
30 #include "inspstring.h"
31 #include "helperfuncs.h"
32 #include "hashcomp.h"
33 #include "typedefs.h"
34 #include "cmd_die.h"
35
36 extern ServerConfig* Config;
37 extern std::vector<userrec*> all_opers;
38
39 void cmd_die::Handle (char **parameters, int pcnt, userrec *user)
40 {
41         if (!strcmp(parameters[0],Config->diepass))
42         {
43                 log(SPARSE, "/DIE command from %s!%s@%s, terminating in %d seconds...", user->nick, user->ident, user->host, Config->DieDelay);
44                 
45                 /* This would just be WriteOpers(), but as we just sleep() and then die then the write buffers never get flushed.
46                  * so we iterate the oper list, writing the message and immediately trying to flush their write buffer.
47                  */
48                 
49                 for (std::vector<userrec*>::iterator i = all_opers.begin(); i != all_opers.end(); i++)
50                 {
51                         userrec* a = *i;
52                         
53                         if (IS_LOCAL(a) && (a->modebits & UM_SERVERNOTICE))
54                         {
55                                 WriteServ(a->fd, "NOTICE %s :*** DIE command from %s!%s@%s, terminating...", a->nick, a->nick, a->ident, a->host);
56                                 a->FlushWriteBuf();
57                         }
58                 }
59                 
60                 sleep(Config->DieDelay);
61                 Exit(ERROR);
62         }
63         else
64         {
65                 log(SPARSE, "Failed /DIE command from %s!%s@%s", user->nick, user->ident, user->host);
66                 WriteOpers("*** Failed DIE Command from %s!%s@%s.",user->nick,user->ident,user->host);
67         }
68 }