1 |
adx |
30 |
/* |
2 |
|
|
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
3 |
|
|
* m_eob.c: Signifies the end of a server burst. |
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 |
knight |
31 |
* $Id$ |
23 |
adx |
30 |
*/ |
24 |
|
|
|
25 |
|
|
#include "stdinc.h" |
26 |
|
|
#include "handlers.h" |
27 |
|
|
#include "client.h" |
28 |
|
|
#include "ircd.h" |
29 |
|
|
#include "numeric.h" |
30 |
|
|
#include "s_conf.h" |
31 |
|
|
#include "s_serv.h" |
32 |
|
|
#include "send.h" |
33 |
|
|
#include "msg.h" |
34 |
|
|
#include "parse.h" |
35 |
|
|
#include "modules.h" |
36 |
|
|
#include <stdlib.h> |
37 |
|
|
|
38 |
|
|
static void ms_eob(struct Client*, struct Client*, int, char**); |
39 |
|
|
|
40 |
|
|
struct Message eob_msgtab = { |
41 |
|
|
"EOB", 0, 0, 0, 0, MFLG_SLOW | MFLG_UNREG, 0, |
42 |
|
|
{m_unregistered, m_ignore, ms_eob, m_ignore, m_ignore, m_ignore} |
43 |
|
|
}; |
44 |
|
|
#ifndef STATIC_MODULES |
45 |
|
|
void |
46 |
|
|
_modinit(void) |
47 |
|
|
{ |
48 |
|
|
mod_add_cmd(&eob_msgtab); |
49 |
|
|
} |
50 |
|
|
|
51 |
|
|
void |
52 |
|
|
_moddeinit(void) |
53 |
|
|
{ |
54 |
|
|
mod_del_cmd(&eob_msgtab); |
55 |
|
|
} |
56 |
|
|
|
57 |
knight |
31 |
const char *_version = "$Revision$"; |
58 |
adx |
30 |
#endif |
59 |
|
|
|
60 |
|
|
/* |
61 |
|
|
* ms_eob - EOB command handler |
62 |
|
|
* parv[0] = sender prefix |
63 |
|
|
* parv[1] = servername |
64 |
|
|
*/ |
65 |
|
|
static void |
66 |
|
|
ms_eob(struct Client *client_p, struct Client *source_p, |
67 |
|
|
int parc, char *parv[]) |
68 |
|
|
{ |
69 |
|
|
sendto_realops_flags(UMODE_ALL, L_ALL, "End of burst from %s (%u seconds)", |
70 |
|
|
source_p->name, |
71 |
|
|
(unsigned int)(CurrentTime - source_p->firsttime)); |
72 |
|
|
SetEob(client_p); |
73 |
|
|
} |