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