ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_eob.c
Revision: 3135
Committed: Mon Mar 10 21:11:25 2014 UTC (12 years, 4 months ago) by michael
Content type: text/x-csrc
File size: 2226 byte(s)
Log Message:
- Server now no longer accepts TS5 links

File Contents

# User Rev Content
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 1971 #include "s_serv.h"
34 adx 30
35    
36     /*
37     * ms_eob - EOB command handler
38 michael 3096 * parv[0] = command
39 adx 30 * parv[1] = servername
40     */
41 michael 2820 static int
42 adx 30 ms_eob(struct Client *client_p, struct Client *source_p,
43     int parc, char *parv[])
44     {
45 michael 1219 assert(IsServer(source_p));
46    
47 michael 1986 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 michael 1219 AddFlag(source_p, FLAGS_EOB);
54 michael 1971
55 michael 3135 sendto_server(client_p, NOCAPS, NOCAPS, ":%s EOB", ID(source_p));
56 michael 2820 return 0;
57 adx 30 }
58 michael 1230
59 michael 2820 static struct Message eob_msgtab =
60     {
61 michael 1569 "EOB", 0, 0, 0, MAXPARA, MFLG_SLOW, 0,
62 michael 2820 { m_unregistered, m_ignore, ms_eob, m_ignore, m_ignore, m_ignore }
63 michael 1230 };
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 michael 2820 struct module module_entry =
78     {
79 michael 1230 .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     };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision