1 |
adx |
30 |
/* |
2 |
michael |
2820 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
adx |
30 |
* |
4 |
michael |
2820 |
* Copyright (c) 2000-2014 ircd-hybrid development team |
5 |
adx |
30 |
* |
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 |
michael |
2820 |
/*! \file m_eob.c |
23 |
|
|
* \brief Includes required functions for processing the EOB command. |
24 |
|
|
* \version $Id$ |
25 |
|
|
*/ |
26 |
|
|
|
27 |
adx |
30 |
#include "stdinc.h" |
28 |
|
|
#include "client.h" |
29 |
|
|
#include "ircd.h" |
30 |
|
|
#include "send.h" |
31 |
|
|
#include "parse.h" |
32 |
|
|
#include "modules.h" |
33 |
michael |
3347 |
#include "server.h" |
34 |
adx |
30 |
|
35 |
|
|
|
36 |
michael |
3266 |
/*! \brief EOB command handler |
37 |
|
|
* |
38 |
|
|
* \param source_p Pointer to allocated Client struct from which the message |
39 |
|
|
* originally comes from. This can be a local or remote client. |
40 |
|
|
* \param parc Integer holding the number of supplied arguments. |
41 |
|
|
* \param parv Argument vector where parv[0] .. parv[parc-1] are non-NULL |
42 |
|
|
* pointers. |
43 |
|
|
* \note Valid arguments for this command are: |
44 |
|
|
* - parv[0] = command |
45 |
adx |
30 |
*/ |
46 |
michael |
2820 |
static int |
47 |
michael |
3156 |
ms_eob(struct Client *source_p, int parc, char *parv[]) |
48 |
adx |
30 |
{ |
49 |
michael |
1219 |
assert(IsServer(source_p)); |
50 |
|
|
|
51 |
michael |
3156 |
if (MyConnect(source_p)) |
52 |
michael |
1986 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
53 |
|
|
"End of burst from %s (%u seconds)", |
54 |
|
|
source_p->name, |
55 |
|
|
(unsigned int)(CurrentTime - source_p->localClient->firsttime)); |
56 |
|
|
|
57 |
michael |
1219 |
AddFlag(source_p, FLAGS_EOB); |
58 |
michael |
1971 |
|
59 |
michael |
3186 |
sendto_server(source_p, NOCAPS, NOCAPS, ":%s EOB", source_p->id); |
60 |
michael |
2820 |
return 0; |
61 |
adx |
30 |
} |
62 |
michael |
1230 |
|
63 |
michael |
2820 |
static struct Message eob_msgtab = |
64 |
|
|
{ |
65 |
michael |
1569 |
"EOB", 0, 0, 0, MAXPARA, MFLG_SLOW, 0, |
66 |
michael |
2820 |
{ m_unregistered, m_ignore, ms_eob, m_ignore, m_ignore, m_ignore } |
67 |
michael |
1230 |
}; |
68 |
|
|
|
69 |
|
|
static void |
70 |
|
|
module_init(void) |
71 |
|
|
{ |
72 |
|
|
mod_add_cmd(&eob_msgtab); |
73 |
|
|
} |
74 |
|
|
|
75 |
|
|
static void |
76 |
|
|
module_exit(void) |
77 |
|
|
{ |
78 |
|
|
mod_del_cmd(&eob_msgtab); |
79 |
|
|
} |
80 |
|
|
|
81 |
michael |
2820 |
struct module module_entry = |
82 |
|
|
{ |
83 |
michael |
1230 |
.node = { NULL, NULL, NULL }, |
84 |
|
|
.name = NULL, |
85 |
|
|
.version = "$Revision$", |
86 |
|
|
.handle = NULL, |
87 |
|
|
.modinit = module_init, |
88 |
|
|
.modexit = module_exit, |
89 |
|
|
.flags = 0 |
90 |
|
|
}; |