| 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 |
michael |
4565 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
| 19 |
adx |
30 |
* 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 |
3961 |
static void |
| 37 |
|
|
server_eob(struct Client *server) |
| 38 |
|
|
{ |
| 39 |
|
|
dlink_node *ptr = NULL; |
| 40 |
|
|
|
| 41 |
michael |
4062 |
assert(IsServer(server)); |
| 42 |
michael |
3961 |
|
| 43 |
|
|
AddFlag(server, FLAGS_EOB); |
| 44 |
|
|
|
| 45 |
|
|
DLINK_FOREACH(ptr, server->serv->server_list.head) |
| 46 |
|
|
server_eob(ptr->data); |
| 47 |
|
|
} |
| 48 |
|
|
|
| 49 |
michael |
3266 |
/*! \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 |
adx |
30 |
*/ |
| 59 |
michael |
2820 |
static int |
| 60 |
michael |
3156 |
ms_eob(struct Client *source_p, int parc, char *parv[]) |
| 61 |
adx |
30 |
{ |
| 62 |
michael |
1219 |
assert(IsServer(source_p)); |
| 63 |
|
|
|
| 64 |
michael |
3156 |
if (MyConnect(source_p)) |
| 65 |
michael |
1986 |
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 |
michael |
3961 |
server_eob(source_p); |
| 71 |
michael |
1971 |
|
| 72 |
michael |
3186 |
sendto_server(source_p, NOCAPS, NOCAPS, ":%s EOB", source_p->id); |
| 73 |
michael |
2820 |
return 0; |
| 74 |
adx |
30 |
} |
| 75 |
michael |
1230 |
|
| 76 |
michael |
2820 |
static struct Message eob_msgtab = |
| 77 |
|
|
{ |
| 78 |
michael |
4545 |
"EOB", NULL, 0, 0, 0, MAXPARA, MFLG_SLOW, 0, |
| 79 |
michael |
2820 |
{ m_unregistered, m_ignore, ms_eob, m_ignore, m_ignore, m_ignore } |
| 80 |
michael |
1230 |
}; |
| 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 |
michael |
2820 |
struct module module_entry = |
| 95 |
|
|
{ |
| 96 |
michael |
1230 |
.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 |
|
|
}; |