ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/core/m_die.c
Revision: 1243
Committed: Fri Sep 30 10:47:53 2011 UTC (12 years, 6 months ago) by michael
Content type: text/x-csrc
Original Path: ircd-hybrid-8/modules/core/m_die.c
File size: 2416 byte(s)
Log Message:
- move content of msg.h, ircd_handler.h and handlers.h into parse.h and
  remove headers accordingly
- killed common.h
- remove m_killhost.c and m_flags.c from contrib/
- sort out unused header includes here and there

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * m_die.c: Kills off this server.
4 *
5 * Copyright (C) 2002 by the past and present ircd coders, and others.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 #include "stdinc.h"
26 #include "client.h"
27 #include "ircd.h"
28 #include "irc_string.h"
29 #include "numeric.h"
30 #include "send.h"
31 #include "parse.h"
32 #include "modules.h"
33 #include "restart.h"
34 #include "s_conf.h"
35
36
37 /*
38 * mo_die - DIE command handler
39 */
40 static void
41 mo_die(struct Client *client_p, struct Client *source_p,
42 int parc, char *parv[])
43 {
44 char buf[IRCD_BUFSIZE];
45
46 if (!HasOFlag(source_p, OPER_FLAG_DIE))
47 {
48 sendto_one(source_p, form_str(ERR_NOPRIVS),
49 me.name, source_p->name, "die");
50 return;
51 }
52
53 if (parc < 2 || EmptyString(parv[1]))
54 {
55 sendto_one(source_p, ":%s NOTICE %s :Need server name /die %s",
56 me.name, source_p->name, me.name);
57 return;
58 }
59
60 if (irccmp(parv[1], me.name))
61 {
62 sendto_one(source_p, ":%s NOTICE %s :Mismatch on /die %s",
63 me.name, source_p->name, me.name);
64 return;
65 }
66
67 snprintf(buf, sizeof(buf), "received DIE command from %s",
68 get_oper_name(source_p));
69 server_die(buf, 0);
70 }
71
72 static struct Message die_msgtab = {
73 "DIE", 0, 0, 1, MAXPARA, MFLG_SLOW, 0,
74 {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_die, m_ignore}
75 };
76
77 static void
78 module_init(void)
79 {
80 mod_add_cmd(&die_msgtab);
81 }
82
83 static void
84 module_exit(void)
85 {
86 mod_del_cmd(&die_msgtab);
87 }
88
89 struct module module_entry = {
90 .node = { NULL, NULL, NULL },
91 .name = NULL,
92 .version = "$Revision$",
93 .handle = NULL,
94 .modinit = module_init,
95 .modexit = module_exit,
96 .flags = MODULE_FLAG_CORE
97 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision