1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 2000-2014 ircd-hybrid development team |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
19 |
* USA |
20 |
*/ |
21 |
|
22 |
/*! \file m_eob.c |
23 |
* \brief Includes required functions for processing the EOB command. |
24 |
* \version $Id$ |
25 |
*/ |
26 |
|
27 |
#include "stdinc.h" |
28 |
#include "client.h" |
29 |
#include "ircd.h" |
30 |
#include "send.h" |
31 |
#include "parse.h" |
32 |
#include "modules.h" |
33 |
#include "server.h" |
34 |
|
35 |
|
36 |
static void |
37 |
server_eob(struct Client *server) |
38 |
{ |
39 |
dlink_node *ptr = NULL; |
40 |
|
41 |
assert(IsServer(server)); |
42 |
|
43 |
AddFlag(server, FLAGS_EOB); |
44 |
|
45 |
DLINK_FOREACH(ptr, server->serv->server_list.head) |
46 |
server_eob(ptr->data); |
47 |
} |
48 |
|
49 |
/*! \brief EOB command handler |
50 |
* |
51 |
* \param source_p Pointer to allocated Client struct from which the message |
52 |
* originally comes from. This can be a local or remote client. |
53 |
* \param parc Integer holding the number of supplied arguments. |
54 |
* \param parv Argument vector where parv[0] .. parv[parc-1] are non-NULL |
55 |
* pointers. |
56 |
* \note Valid arguments for this command are: |
57 |
* - parv[0] = command |
58 |
*/ |
59 |
static int |
60 |
ms_eob(struct Client *source_p, int parc, char *parv[]) |
61 |
{ |
62 |
assert(IsServer(source_p)); |
63 |
|
64 |
if (MyConnect(source_p)) |
65 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
66 |
"End of burst from %s (%u seconds)", |
67 |
source_p->name, |
68 |
(unsigned int)(CurrentTime - source_p->localClient->firsttime)); |
69 |
|
70 |
server_eob(source_p); |
71 |
|
72 |
sendto_server(source_p, NOCAPS, NOCAPS, ":%s EOB", source_p->id); |
73 |
return 0; |
74 |
} |
75 |
|
76 |
static struct Message eob_msgtab = |
77 |
{ |
78 |
"EOB", NULL, 0, 0, 0, MAXPARA, MFLG_SLOW, 0, |
79 |
{ m_unregistered, m_ignore, ms_eob, m_ignore, m_ignore, m_ignore } |
80 |
}; |
81 |
|
82 |
static void |
83 |
module_init(void) |
84 |
{ |
85 |
mod_add_cmd(&eob_msgtab); |
86 |
} |
87 |
|
88 |
static void |
89 |
module_exit(void) |
90 |
{ |
91 |
mod_del_cmd(&eob_msgtab); |
92 |
} |
93 |
|
94 |
struct module module_entry = |
95 |
{ |
96 |
.node = { NULL, NULL, NULL }, |
97 |
.name = NULL, |
98 |
.version = "$Revision$", |
99 |
.handle = NULL, |
100 |
.modinit = module_init, |
101 |
.modexit = module_exit, |
102 |
.flags = 0 |
103 |
}; |