]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_restart.cpp
Convert more modules
[user/henk/code/inspircd.git] / src / cmd_restart.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 "users.h"
17 #include "commands/cmd_restart.h"
18
19 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
20 {
21         return new cmd_restart(Instance);
22 }
23
24 CmdResult cmd_restart::Handle (const char** parameters, int pcnt, userrec *user)
25 {
26         ServerInstance->Log(DEFAULT,"Restart: %s",user->nick);
27         if (!strcmp(parameters[0],ServerInstance->Config->restartpass))
28         {
29                 ServerInstance->WriteOpers("*** RESTART command from %s!%s@%s, restarting server.",user->nick,user->ident,user->host);
30
31                 try
32                 {
33                         ServerInstance->Restart("Server restarting.");
34                 }
35                 catch (...)
36                 {
37                         /* We dont actually get here unless theres some fatal and unrecoverable error. */
38                         exit(0);
39                 }
40         }
41         else
42         {
43                 ServerInstance->WriteOpers("*** Failed RESTART Command from %s!%s@%s.",user->nick,user->ident,user->host);
44                 return CMD_FAILURE;
45         }
46
47         return CMD_SUCCESS;
48 }
49