ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_encap.c
Revision: 9101
Committed: Wed Jan 1 09:58:45 2020 UTC (6 years, 6 months ago) by michael
Content type: text/x-csrc
File size: 3165 byte(s)
Log Message:
- Bump copyright years everywhere

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2816 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 9101 * Copyright (c) 2003-2020 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 michael 4565 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 adx 30 * USA
20     */
21    
22 michael 2816 /*! \file m_encap.c
23     * \brief Includes required functions for processing the ENCAP command.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28     #include "client.h"
29     #include "parse.h"
30 michael 8166 #include "server_capab.h"
31 adx 30 #include "send.h"
32     #include "modules.h"
33     #include "irc_string.h"
34    
35    
36     /*
37     * ms_encap()
38     *
39     * inputs - destination server, subcommand, parameters
40     * output - none
41     * side effects - propagates subcommand to locally connected servers
42     */
43 michael 9077 static void
44 michael 3156 ms_encap(struct Client *source_p, int parc, char *parv[])
45 adx 30 {
46 michael 3215 char buffer[IRCD_BUFSIZE] = "", *ptr = buffer;
47 adx 30 unsigned int cur_len = 0, len, i;
48 michael 1321 #ifdef NOT_USED_YET
49 adx 30 int paramcount, mpara = 0;
50 michael 1321 #endif
51 adx 30 struct Message *mptr = NULL;
52    
53 michael 3215 for (i = 1; i < (unsigned int)parc - 1; ++i)
54 adx 30 {
55 michael 8260 len = strlen(parv[i]) + 1; /* +1 for the space */
56 adx 30
57 michael 8260 /* Drop the whole command if this parameter would be truncated */
58 adx 30 if ((cur_len + len) >= sizeof(buffer))
59 michael 9077 return;
60 adx 30
61 michael 1233 snprintf(ptr, sizeof(buffer) - cur_len, "%s ", parv[i]);
62 adx 30 cur_len += len;
63     ptr += len;
64     }
65    
66 michael 3037 /* If it's a command without parameters, don't prepend a ':' */
67 adx 30 if (parc == 3)
68 michael 1233 snprintf(ptr, sizeof(buffer) - cur_len, "%s", parv[2]);
69 adx 30 else
70 michael 1233 snprintf(ptr, sizeof(buffer) - cur_len, ":%s", parv[parc - 1]);
71 adx 30
72 michael 6354 sendto_match_servs(source_p, parv[1], CAPAB_ENCAP,
73 adx 30 "ENCAP %s", buffer);
74    
75 michael 1652 if (match(parv[1], me.name))
76 michael 9077 return;
77 adx 30
78     if ((mptr = find_command(parv[2])) == NULL)
79 michael 9077 return;
80 adx 30
81 michael 1178 #ifdef NOT_USED_YET
82 adx 30 paramcount = mptr->parameters;
83     mpara = mptr->maxpara;
84 michael 1178 #endif
85 adx 30 mptr->bytes += strlen(buffer);
86    
87     parv += 2;
88     parc -= 2;
89    
90 michael 4155 if ((unsigned int)parc >= mptr->args_min)
91     mptr->handlers[ENCAP_HANDLER](source_p, parc, parv);
92 adx 30 }
93 michael 1230
94 michael 2816 static struct Message encap_msgtab =
95     {
96 michael 5881 .cmd = "ENCAP",
97     .args_min = 3,
98     .args_max = MAXPARA,
99     .handlers[UNREGISTERED_HANDLER] = m_ignore,
100     .handlers[CLIENT_HANDLER] = m_ignore,
101     .handlers[SERVER_HANDLER] = ms_encap,
102     .handlers[ENCAP_HANDLER] = m_ignore,
103     .handlers[OPER_HANDLER] = m_ignore
104 michael 1230 };
105    
106     static void
107     module_init(void)
108     {
109     mod_add_cmd(&encap_msgtab);
110 michael 8166 capab_add("ENCAP", CAPAB_ENCAP);
111 michael 1230 }
112    
113     static void
114     module_exit(void)
115     {
116     mod_del_cmd(&encap_msgtab);
117 michael 8166 capab_del("ENCAP");
118 michael 1230 }
119    
120 michael 2816 struct module module_entry =
121     {
122 michael 1230 .version = "$Revision$",
123     .modinit = module_init,
124     .modexit = module_exit,
125     };

Properties

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