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 |
|
|
* $Id: m_post.c,v 1.19 2005/07/30 20:44:14 adx Exp $ |
23 |
|
|
*/ |
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 |
|
|
static void mr_dumb_proxy(struct Client*, struct Client*, int, char**); |
38 |
|
|
|
39 |
|
|
struct Message post_msgtab = { |
40 |
|
|
"POST", 0, 0, 0, 0, MFLG_SLOW | MFLG_UNREG, 0, |
41 |
|
|
{mr_dumb_proxy, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore} |
42 |
|
|
}; |
43 |
|
|
|
44 |
|
|
struct Message get_msgtab = { |
45 |
|
|
"GET", 0, 0, 0, 0, MFLG_SLOW | MFLG_UNREG, 0, |
46 |
|
|
{mr_dumb_proxy, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore} |
47 |
|
|
}; |
48 |
|
|
|
49 |
|
|
struct Message put_msgtab = { |
50 |
|
|
"PUT", 0, 0, 0, 0, MFLG_SLOW | MFLG_UNREG, 0, |
51 |
|
|
{mr_dumb_proxy, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore} |
52 |
|
|
}; |
53 |
|
|
|
54 |
|
|
|
55 |
|
|
#ifndef STATIC_MODULES |
56 |
|
|
void |
57 |
|
|
_modinit(void) |
58 |
|
|
{ |
59 |
|
|
mod_add_cmd(&post_msgtab); |
60 |
|
|
mod_add_cmd(&get_msgtab); |
61 |
|
|
mod_add_cmd(&put_msgtab); |
62 |
|
|
} |
63 |
|
|
|
64 |
|
|
void |
65 |
|
|
_moddeinit(void) |
66 |
|
|
{ |
67 |
|
|
mod_del_cmd(&post_msgtab); |
68 |
|
|
mod_del_cmd(&get_msgtab); |
69 |
|
|
mod_del_cmd(&put_msgtab); |
70 |
|
|
} |
71 |
|
|
|
72 |
|
|
const char *_version = "$Revision: 1.19 $"; |
73 |
|
|
#endif |
74 |
|
|
|
75 |
|
|
/* |
76 |
|
|
** mr_dumb_proxy |
77 |
|
|
** parv[0] = sender prefix |
78 |
|
|
** parv[1] = comment |
79 |
|
|
*/ |
80 |
|
|
static void |
81 |
|
|
mr_dumb_proxy(struct Client *client_p, struct Client *source_p, |
82 |
|
|
int parc, char *parv[]) |
83 |
|
|
{ |
84 |
|
|
sendto_realops_flags(UMODE_REJ, L_ALL, |
85 |
|
|
"HTTP Proxy disconnected: [%s@%s]", |
86 |
|
|
client_p->username, client_p->host); |
87 |
|
|
exit_client(source_p, source_p, "Client Exit"); |
88 |
|
|
} |