]> jfr.im git - irc/rqf/shadowircd.git/blame - src/restart.c
ok, trying to work on blockheap's stuff
[irc/rqf/shadowircd.git] / src / restart.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * restart.c: Functions to allow the ircd to restart.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
6fcb8629 24 * $Id: restart.c 3354 2007-04-03 09:21:31Z nenolod $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "restart.h"
29#include "common.h"
30#include "ircd.h"
31#include "send.h"
32#include "s_log.h"
33#include "client.h" /* for FLAGS_ALL */
212380e3 34
35/* external var */
36extern char **myargv;
37
38void
39restart(const char *mesg)
40{
41 static int was_here = NO; /* redundant due to restarting flag below */
42
43 if(was_here)
44 abort();
45 was_here = YES;
46
68ff929f 47 ilog(L_MAIN, "Restarting Server because: %s", mesg);
212380e3 48
49 server_reboot();
50}
51
52void
53server_reboot(void)
54{
55 int i;
38e6acdd 56 int maxconn = rb_get_maxconnections();
212380e3 57
58 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Restarting server...");
59
60 ilog(L_MAIN, "Restarting server...");
61 /*
62 * XXX we used to call flush_connections() here. But since this routine
63 * doesn't exist anymore, we won't be flushing. This is ok, since
38e6acdd 64 * when close handlers come into existance, rb_close() will be called
212380e3 65 * below, and the data flushing will be implicit.
66 * -- adrian
67 *
68 * bah, for now, the program ain't coming back to here, so forcibly
69 * close everything the "wrong" way for now, and just LEAVE...
70 */
6fcb8629 71 for (i = 0; i < maxconn; ++i)
212380e3 72 close(i);
73
74 unlink(pidFileName);
75 execv(SPATH, myargv);
76
77 exit(-1);
78}