ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_post.c
Revision: 1230
Committed: Thu Sep 22 19:41:19 2011 UTC (13 years, 11 months ago) by michael
Content type: text/x-csrc
Original Path: ircd-hybrid-8/modules/m_post.c
File size: 2492 byte(s)
Log Message:
- cleanup module loader. Make module api more flexible

File Contents

# User Rev Content
1 adx 30 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3     * m_post.c: Exits the user if unregistered, it is a web form.
4     *
5     * Copyright (C) 2001-2002 Hybrid Development Team
6     *
7     * This program is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 2 of the License, or
10     * (at your option) any later version.
11     *
12     * This program is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with this program; if not, write to the Free Software
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20     * USA
21     *
22 knight 31 * $Id$
23 adx 30 */
24    
25     #include "stdinc.h"
26     #include "handlers.h"
27     #include "client.h"
28     #include "ircd.h"
29     #include "numeric.h"
30     #include "s_serv.h"
31     #include "send.h"
32     #include "msg.h"
33     #include "parse.h"
34     #include "modules.h"
35     #include "s_conf.h"
36    
37    
38 michael 1230 /*
39     ** mr_dumb_proxy
40     ** parv[0] = sender prefix
41     ** parv[1] = comment
42     */
43     static void
44     mr_dumb_proxy(struct Client *client_p, struct Client *source_p,
45     int parc, char *parv[])
46     {
47     sendto_realops_flags(UMODE_REJ, L_ALL,
48     "HTTP Proxy disconnected: [%s@%s]",
49     client_p->username, client_p->host);
50     exit_client(source_p, source_p, "Client Exit");
51     }
52    
53     static struct Message post_msgtab = {
54 michael 1178 "POST", 0, 0, 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0,
55 adx 30 {mr_dumb_proxy, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore}
56     };
57    
58 michael 1230 static struct Message get_msgtab = {
59 michael 1178 "GET", 0, 0, 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0,
60 adx 30 {mr_dumb_proxy, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore}
61     };
62    
63 michael 1230 static struct Message put_msgtab = {
64 michael 1178 "PUT", 0, 0, 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0,
65 adx 30 {mr_dumb_proxy, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore}
66     };
67    
68 michael 1230 static void
69     module_init(void)
70 adx 30 {
71     mod_add_cmd(&post_msgtab);
72     mod_add_cmd(&get_msgtab);
73     mod_add_cmd(&put_msgtab);
74     }
75    
76 michael 1230 static void
77     module_exit(void)
78 adx 30 {
79     mod_del_cmd(&post_msgtab);
80     mod_del_cmd(&get_msgtab);
81     mod_del_cmd(&put_msgtab);
82     }
83    
84 michael 1230 struct module module_entry = {
85     .node = { NULL, NULL, NULL },
86     .name = NULL,
87     .version = "$Revision$",
88     .handle = NULL,
89     .modinit = module_init,
90     .modexit = module_exit,
91     .flags = 0
92     };

Properties

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