| 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 "s_serv.h" |
| 34 |
|
| 35 |
|
| 36 |
/* |
| 37 |
* ms_eob - EOB command handler |
| 38 |
* parv[0] = command |
| 39 |
* parv[1] = servername |
| 40 |
*/ |
| 41 |
static int |
| 42 |
ms_eob(struct Client *client_p, struct Client *source_p, |
| 43 |
int parc, char *parv[]) |
| 44 |
{ |
| 45 |
assert(IsServer(source_p)); |
| 46 |
|
| 47 |
if (client_p == source_p) |
| 48 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
| 49 |
"End of burst from %s (%u seconds)", |
| 50 |
source_p->name, |
| 51 |
(unsigned int)(CurrentTime - source_p->localClient->firsttime)); |
| 52 |
|
| 53 |
AddFlag(source_p, FLAGS_EOB); |
| 54 |
|
| 55 |
sendto_server(client_p, NOCAPS, NOCAPS, ":%s EOB", ID(source_p)); |
| 56 |
return 0; |
| 57 |
} |
| 58 |
|
| 59 |
static struct Message eob_msgtab = |
| 60 |
{ |
| 61 |
"EOB", 0, 0, 0, MAXPARA, MFLG_SLOW, 0, |
| 62 |
{ m_unregistered, m_ignore, ms_eob, m_ignore, m_ignore, m_ignore } |
| 63 |
}; |
| 64 |
|
| 65 |
static void |
| 66 |
module_init(void) |
| 67 |
{ |
| 68 |
mod_add_cmd(&eob_msgtab); |
| 69 |
} |
| 70 |
|
| 71 |
static void |
| 72 |
module_exit(void) |
| 73 |
{ |
| 74 |
mod_del_cmd(&eob_msgtab); |
| 75 |
} |
| 76 |
|
| 77 |
struct module module_entry = |
| 78 |
{ |
| 79 |
.node = { NULL, NULL, NULL }, |
| 80 |
.name = NULL, |
| 81 |
.version = "$Revision$", |
| 82 |
.handle = NULL, |
| 83 |
.modinit = module_init, |
| 84 |
.modexit = module_exit, |
| 85 |
.flags = 0 |
| 86 |
}; |