]> jfr.im git - irc/rqf/shadowircd.git/blame - include/msg.h
Update NEWS.
[irc/rqf/shadowircd.git] / include / msg.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * msg.h: A header for the message handler structure.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: msg.h 6 2005-09-10 01:02:21Z nenolod $
25 */
26
27#ifndef INCLUDED_msg_h
28#define INCLUDED_msg_h
29
30#include "config.h"
31
32struct Client;
33
34/* MessageHandler */
35typedef enum HandlerType
36{
37 UNREGISTERED_HANDLER,
38 CLIENT_HANDLER,
39 RCLIENT_HANDLER,
40 SERVER_HANDLER,
41 ENCAP_HANDLER,
42 OPER_HANDLER,
43 LAST_HANDLER_TYPE
44}
45HandlerType;
46
47/* struct Client* client_p - connection message originated from
48 * struct Client* source_p - source of message, may be different from client_p
49 * int parc - parameter count
50 * char* parv[] - parameter vector
51 */
52typedef int (*MessageHandler) (struct Client *, struct Client *, int, const char *[]);
53
54struct MessageEntry
55{
56 MessageHandler handler;
57 int min_para;
58};
59
60/* Message table structure */
61struct Message
62{
b4cd337c 63 const char *cmd;
212380e3 64 unsigned int count; /* number of times command used */
65 unsigned int rcount; /* number of times command used by server */
66 unsigned long bytes; /* bytes received for this message */
67 unsigned int flags; /* bit 0 set means that this command is allowed
68 * to be used only on the average of once per 2
69 * seconds -SRB
70 */
71 /* handlers:
72 * UNREGISTERED, CLIENT, RCLIENT, SERVER, OPER, LAST
73 */
74 struct MessageEntry handlers[LAST_HANDLER_TYPE];
75};
76
77#define MFLG_SLOW 0x01 /* executed roughly once per 2s */
78#define MFLG_UNREG 0x02 /* available to unregistered clients */
79
80#define MAXPARA 15
81
82/* generic handlers */
83extern int m_ignore(struct Client *, struct Client *, int, const char **);
84extern int m_not_oper(struct Client *, struct Client *, int, const char **);
85extern int m_registered(struct Client *, struct Client *, int, const char **);
86extern int m_unregistered(struct Client *, struct Client *, int, const char **);
87
88#define mg_ignore { m_ignore, 0 }
89#define mg_not_oper { m_not_oper, 0 }
90#define mg_reg { m_registered, 0 }
91#define mg_unreg { m_unregistered, 0 }
92
93/*
94 * m_functions execute protocol messages on this server:
95 * int m_func(struct Client* client_p, struct Client* source_p, int parc, char* parv[]);
96 *
97 * client_p is always NON-NULL, pointing to a *LOCAL* client
98 * structure (with an open socket connected!). This
99 * identifies the physical socket where the message
100 * originated (or which caused the m_function to be
101 * executed--some m_functions may call others...).
102 *
103 * source_p is the source of the message, defined by the
104 * prefix part of the message if present. If not
105 * or prefix not found, then source_p==client_p.
106 *
107 * (!IsServer(client_p)) => (client_p == source_p), because
108 * prefixes are taken *only* from servers...
109 *
110 * (IsServer(client_p))
111 * (source_p == client_p) => the message didn't
112 * have the prefix.
113 *
114 * (source_p != client_p && IsServer(source_p) means
115 * the prefix specified servername. (?)
116 *
117 * (source_p != client_p && !IsServer(source_p) means
118 * that message originated from a remote
119 * user (not local).
120 *
121 *
122 * combining
123 *
124 * (!IsServer(source_p)) means that, source_p can safely
125 * taken as defining the target structure of the
126 * message in this server.
127 *
128 * *Always* true (if 'parse' and others are working correct):
129 *
130 * 1) source_p->from == client_p (note: client_p->from == client_p)
131 *
132 * 2) MyConnect(source_p) <=> source_p == client_p (e.g. source_p
133 * *cannot* be a local connection, unless it's
134 * actually client_p!). [MyConnect(x) should probably
135 * be defined as (x == x->from) --msa ]
136 *
137 * parc number of variable parameter strings (if zero,
138 * parv is allowed to be NULL)
139 *
140 * parv a NULL terminated list of parameter pointers,
141 *
ac408af6
JT
142 * parv[0], unused for historical reasons (formerly
143 * sender name)
212380e3 144 * parv[1]...parv[parc-1]
145 * pointers to additional parameters
146 * parv[parc] == NULL, *always*
147 *
ac408af6 148 * note: it is guaranteed that parv[1]..parv[parc-1] are all
212380e3 149 * non-NULL pointers.
150 */
151
152#endif /* INCLUDED_msg_h */