2 * ircd-ratbox: A slightly useful ircd.
3 * m_pass.c: Used to send a password for a server or client{} block.
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
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.
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.
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
26 #include "client.h" /* client struct */
27 #include "irc_string.h"
28 #include "send.h" /* sendto_one */
29 #include "numeric.h" /* ERR_xxx */
30 #include "ircd.h" /* me */
38 static int mr_pass(struct Client
*, struct Client
*, int, const char **);
40 struct Message pass_msgtab
= {
41 "PASS", 0, 0, 0, MFLG_SLOW
| MFLG_UNREG
,
42 {{mr_pass
, 2}, mg_reg
, mg_ignore
, mg_ignore
, mg_ignore
, mg_reg
}
45 mapi_clist_av1 pass_clist
[] = { &pass_msgtab
, NULL
};
46 DECLARE_MODULE_AV1(pass
, NULL
, NULL
, pass_clist
, NULL
, NULL
, "$Revision: 26 $");
49 * m_pass() - Added Sat, 4 March 1989
52 * mr_pass - PASS message handler
53 * parv[0] = sender prefix
55 * parv[2] = "TS" if this server supports TS.
56 * parv[3] = optional TS version field -- needed for TS6
59 mr_pass(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
61 if(client_p
->localClient
->passwd
)
63 memset(client_p
->localClient
->passwd
, 0,
64 strlen(client_p
->localClient
->passwd
));
65 MyFree(client_p
->localClient
->passwd
);
68 DupNString(client_p
->localClient
->passwd
, parv
[1], PASSWDLEN
);
70 /* These are for servers only */
71 if(parc
> 2 && client_p
->user
== NULL
)
74 * It looks to me as if orabidoo wanted to have more
75 * than one set of option strings possible here...
76 * i.e. ":AABBTS" as long as TS was the last two chars
77 * however, as we are now using CAPAB, I think we can
78 * safely assume if there is a ":TS" then its a TS server
81 if(irccmp(parv
[2], "TS") == 0 && client_p
->tsinfo
== 0)
82 client_p
->tsinfo
= TS_DOESTS
;
84 /* kludge, if we're not using ts6, dont ever mark a server
85 * as TS6 capable, that way we'll never send them TS6 data.
87 if(ServerInfo
.use_ts6
&& parc
== 5 && atoi(parv
[3]) >= 6)
89 /* only mark as TS6 if the SID is valid.. */
90 if(IsDigit(parv
[4][0]) && IsIdChar(parv
[4][1]) &&
91 IsIdChar(parv
[4][2]) && parv
[4][3] == '\0' &&
92 EmptyString(client_p
->id
))
94 client_p
->localClient
->caps
|= CAP_TS6
;
95 strcpy(client_p
->id
, parv
[4]);