]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-login.c
Reformatted and documented code of the first part of the IRC_NICK()
[ngircd-alex.git] / src / ngircd / irc-login.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Login and logout
12  */
13
14
15 #include "portab.h"
16
17 static char UNUSED id[] = "$Id: irc-login.c,v 1.43 2005/05/17 23:24:43 alex Exp $";
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <strings.h>
25
26 #include "ngircd.h"
27 #include "resolve.h"
28 #include "conn-func.h"
29 #include "conf.h"
30 #include "client.h"
31 #include "channel.h"
32 #include "log.h"
33 #include "messages.h"
34 #include "parse.h"
35 #include "irc.h"
36 #include "irc-info.h"
37 #include "irc-write.h"
38 #include "cvs-version.h"
39
40 #include "exp.h"
41 #include "irc-login.h"
42
43
44 LOCAL bool Hello_User PARAMS(( CLIENT *Client ));
45 LOCAL void Kill_Nick PARAMS(( char *Nick, char *Reason ));
46
47
48 GLOBAL bool
49 IRC_PASS( CLIENT *Client, REQUEST *Req )
50 {
51         assert( Client != NULL );
52         assert( Req != NULL );
53
54         /* Fehler liefern, wenn kein lokaler Client */
55         if( Client_Conn( Client ) <= NONE ) return IRC_WriteStrClient( Client, ERR_UNKNOWNCOMMAND_MSG, Client_ID( Client ), Req->command );
56         
57         if(( Client_Type( Client ) == CLIENT_UNKNOWN ) && ( Req->argc == 1))
58         {
59                 /* noch nicht registrierte unbekannte Verbindung */
60                 Log( LOG_DEBUG, "Connection %d: got PASS command ...", Client_Conn( Client ));
61
62                 /* Passwort speichern */
63                 Client_SetPassword( Client, Req->argv[0] );
64
65                 Client_SetType( Client, CLIENT_GOTPASS );
66                 return CONNECTED;
67         }
68         else if((( Client_Type( Client ) == CLIENT_UNKNOWN ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER )) && (( Req->argc == 3 ) || ( Req->argc == 4 )))
69         {
70                 char c2, c4, *type, *impl, *serverver, *flags, *ptr, *ircflags;
71                 int protohigh, protolow;
72
73                 /* noch nicht registrierte Server-Verbindung */
74                 Log( LOG_DEBUG, "Connection %d: got PASS command (new server link) ...", Client_Conn( Client ));
75
76                 /* Passwort speichern */
77                 Client_SetPassword( Client, Req->argv[0] );
78
79                 /* Protokollversion ermitteln */
80                 if( strlen( Req->argv[1] ) >= 4 )
81                 {
82                         c2 = Req->argv[1][2];
83                         c4 = Req->argv[1][4];
84
85                         Req->argv[1][4] = '\0';
86                         protolow = atoi( &Req->argv[1][2] );
87                         Req->argv[1][2] = '\0';
88                         protohigh = atoi( Req->argv[1] );
89                         
90                         Req->argv[1][2] = c2;
91                         Req->argv[1][4] = c4;
92                 }                       
93                 else protohigh = protolow = 0;
94
95                 /* Protokoll-Typ */
96                 if( strlen( Req->argv[1] ) > 4 ) type = &Req->argv[1][4];
97                 else type = NULL;
98
99                 /* IRC-Flags (nach RFC 2813) */
100                 if( Req->argc >= 4 ) ircflags = Req->argv[3];
101                 else ircflags = "";
102
103                 /* Implementation, Version und ngIRCd-Flags */
104                 impl = Req->argv[2];
105                 ptr = strchr( impl, '|' );
106                 if( ptr ) *ptr = '\0';
107
108                 if( type && ( strcmp( type, PROTOIRCPLUS ) == 0 ))
109                 {
110                         /* auf der anderen Seite laeuft ein Server, der
111                          * ebenfalls das IRC+-Protokoll versteht */
112                         serverver = ptr + 1;
113                         flags = strchr( serverver, ':' );
114                         if( flags )
115                         {
116                                 *flags = '\0';
117                                 flags++;
118                         }
119                         else flags = "";
120                         Log( LOG_INFO, "Peer announces itself as %s-%s using protocol %d.%d/IRC+ (flags: \"%s\").", impl, serverver, protohigh, protolow, flags );
121                 }
122                 else
123                 {
124                         /* auf der anderen Seite laeuft ein Server, der
125                          * nur das Originalprotokoll unterstuetzt */
126                         serverver = "";
127                         if( strchr( ircflags, 'Z' )) flags = "Z";
128                         else flags = "";
129                         Log( LOG_INFO, "Peer announces itself as \"%s\" using protocol %d.%d (flags: \"%s\").", impl, protohigh, protolow, flags );
130                 }
131
132                 Client_SetType( Client, CLIENT_GOTPASSSERVER );
133                 Client_SetFlags( Client, flags );
134
135                 return CONNECTED;
136         }
137         else if(( Client_Type( Client ) == CLIENT_UNKNOWN  ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER ))
138         {
139                 /* Falsche Anzahl Parameter? */
140                 return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
141         }
142         else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
143 } /* IRC_PASS */
144
145
146 /**
147  * IRC "NICK" command.
148  * This function implements the IRC command "NICK" which is used to register
149  * with the server, to change already registered nicknames and to introduce
150  * new users which are connected to other servers.
151  */
152 GLOBAL bool
153 IRC_NICK( CLIENT *Client, REQUEST *Req )
154 {
155         CLIENT *intr_c, *target, *c;
156         char *modes;
157
158         assert( Client != NULL );
159         assert( Req != NULL );
160
161 #ifndef STRICT_RFC
162         /* Some IRC clients, for example BitchX, send the NICK and USER
163          * commands in the wrong order ... */
164         if( Client_Type( Client ) == CLIENT_UNKNOWN
165             || Client_Type( Client ) == CLIENT_GOTPASS
166             || Client_Type( Client ) == CLIENT_GOTNICK
167             || Client_Type( Client ) == CLIENT_GOTUSER
168             || Client_Type( Client ) == CLIENT_USER
169             || ( Client_Type( Client ) == CLIENT_SERVER && Req->argc == 1 ))
170 #else
171         if( Client_Type( Client ) == CLIENT_UNKNOWN
172             || Client_Type( Client ) == CLIENT_GOTPASS
173             || Client_Type( Client ) == CLIENT_GOTNICK
174             || Client_Type( Client ) == CLIENT_USER
175             || ( Client_Type( Client ) == CLIENT_SERVER && Req->argc == 1 ))
176 #endif
177         {
178                 /* User registration or change of nickname */
179
180                 /* Wrong number of arguments? */
181                 if( Req->argc != 1 )
182                         return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG,
183                                                    Client_ID( Client ),
184                                                    Req->command );
185
186                 /* Search "target" client */
187                 if( Client_Type( Client ) == CLIENT_SERVER )
188                 {
189                         target = Client_Search( Req->prefix );
190                         if( ! target )
191                                 return IRC_WriteStrClient( Client,
192                                                            ERR_NOSUCHNICK_MSG,
193                                                            Client_ID( Client ),
194                                                            Req->argv[0] );
195                 }
196                 else
197                 {
198                         /* Is this a restricted client? */
199                         if( Client_HasMode( Client, 'r' ))
200                                 return IRC_WriteStrClient( Client,
201                                                            ERR_RESTRICTED_MSG,
202                                                            Client_ID( Client ));
203
204                         target = Client;
205                 }
206
207 #ifndef STRICT_RFC
208                 /* If the clients tries to change to its own nickname we won't
209                  * do anything. This is how the original ircd behaves and some
210                  * clients (for example Snak) expect it to be like this.
211                  * But I doubt that this is "really the right thing" ... */
212                 if( strcmp( Client_ID( target ), Req->argv[0] ) == 0 )
213                         return CONNECTED;
214 #endif
215
216                 /* Check that the new nickname is available. Special case:
217                  * the client only changes from/to upper to lower case. */
218                 if( strcasecmp( Client_ID( target ), Req->argv[0] ) != 0 )
219                 {
220                         if( ! Client_CheckNick( target, Req->argv[0] ))
221                                 return CONNECTED;
222                 }
223
224                 if(( Client_Type( target ) != CLIENT_USER )
225                    && ( Client_Type( target ) != CLIENT_SERVER ))
226                 {
227                         /* New client */
228                         Log( LOG_DEBUG, "Connection %d: got valid NICK command ...", 
229                              Client_Conn( Client ));
230
231                         /* Register new nickname of this client */
232                         Client_SetID( target, Req->argv[0] );
233
234                         /* If we received a valid USER command already then
235                          * register the new client! */
236                         if( Client_Type( Client ) == CLIENT_GOTUSER )
237                                 return Hello_User( Client );
238                         else
239                                 Client_SetType( Client, CLIENT_GOTNICK );
240                 }
241                 else
242                 {
243                         /* Nickname change */
244                         if( Client_Conn( target ) > NONE )
245                         {
246                                 /* Local client */
247                                 Log( LOG_INFO,
248                                      "User \"%s\" changed nick (connection %d): \"%s\" -> \"%s\".",
249                                      Client_Mask( target ), Client_Conn( target ),
250                                      Client_ID( target ), Req->argv[0] );
251                         }
252                         else
253                         {
254                                 /* Remote client */
255                                 Log( LOG_DEBUG,
256                                      "User \"%s\" changed nick: \"%s\" -> \"%s\".",
257                                      Client_Mask( target ), Client_ID( target ),
258                                      Req->argv[0] );
259                         }
260
261                         /* Inform all users and servers (which have to know)
262                          * of this nickname change */
263                         if( Client_Type( Client ) == CLIENT_USER )
264                                 IRC_WriteStrClientPrefix( Client, Client,
265                                                           "NICK :%s",
266                                                           Req->argv[0] );
267                         IRC_WriteStrServersPrefix( Client, target,
268                                                    "NICK :%s", Req->argv[0] );
269                         IRC_WriteStrRelatedPrefix( target, target, false,
270                                                    "NICK :%s", Req->argv[0] );
271                         
272                         /* Register old nickname for WHOWAS queries */
273                         Client_RegisterWhowas( target );
274                                 
275                         /* Save new nickname */
276                         Client_SetID( target, Req->argv[0] );
277                         
278                         IRC_SetPenalty( target, 2 );
279                 }
280
281                 return CONNECTED;
282         }
283         else if( Client_Type( Client ) == CLIENT_SERVER )
284         {
285                 /* Server introduces new client */
286
287                 /* Falsche Anzahl Parameter? */
288                 if( Req->argc != 7 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
289
290                 /* Nick ueberpruefen */
291                 c = Client_Search( Req->argv[0] );
292                 if( c )
293                 {
294                         /* Der neue Nick ist auf diesem Server bereits registriert:
295                          * sowohl der neue, als auch der alte Client muessen nun
296                          * disconnectiert werden. */
297                         Log( LOG_ERR, "Server %s introduces already registered nick \"%s\"!", Client_ID( Client ), Req->argv[0] );
298                         Kill_Nick( Req->argv[0], "Nick collision" );
299                         return CONNECTED;
300                 }
301
302                 /* Server, zu dem der Client connectiert ist, suchen */
303                 intr_c = Client_GetFromToken( Client, atoi( Req->argv[4] ));
304                 if( ! intr_c )
305                 {
306                         Log( LOG_ERR, "Server %s introduces nick \"%s\" on unknown server!?", Client_ID( Client ), Req->argv[0] );
307                         Kill_Nick( Req->argv[0], "Unknown server" );
308                         return CONNECTED;
309                 }
310
311                 /* Neue Client-Struktur anlegen */
312                 c = Client_NewRemoteUser( intr_c, Req->argv[0], atoi( Req->argv[1] ), Req->argv[2], Req->argv[3], atoi( Req->argv[4] ), Req->argv[5] + 1, Req->argv[6], true);
313                 if( ! c )
314                 {
315                         /* Eine neue Client-Struktur konnte nicht angelegt werden.
316                          * Der Client muss disconnectiert werden, damit der Netz-
317                          * status konsistent bleibt. */
318                         Log( LOG_ALERT, "Can't create client structure! (on connection %d)", Client_Conn( Client ));
319                         Kill_Nick( Req->argv[0], "Server error" );
320                         return CONNECTED;
321                 }
322
323                 modes = Client_Modes( c );
324                 if( *modes ) Log( LOG_DEBUG, "User \"%s\" (+%s) registered (via %s, on %s, %d hop%s).", Client_Mask( c ), modes, Client_ID( Client ), Client_ID( intr_c ), Client_Hops( c ), Client_Hops( c ) > 1 ? "s": "" );
325                 else Log( LOG_DEBUG, "User \"%s\" registered (via %s, on %s, %d hop%s).", Client_Mask( c ), Client_ID( Client ), Client_ID( intr_c ), Client_Hops( c ), Client_Hops( c ) > 1 ? "s": "" );
326
327                 /* Andere Server, ausser dem Introducer, informieren */
328                 IRC_WriteStrServersPrefix( Client, Client, "NICK %s %d %s %s %d %s :%s", Req->argv[0], atoi( Req->argv[1] ) + 1, Req->argv[2], Req->argv[3], Client_MyToken( intr_c ), Req->argv[5], Req->argv[6] );
329
330                 return CONNECTED;
331         }
332         else return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
333 } /* IRC_NICK */
334
335
336 GLOBAL bool
337 IRC_USER( CLIENT *Client, REQUEST *Req )
338 {
339 #ifdef IDENTAUTH
340         char *ptr;
341 #endif
342
343         assert( Client != NULL );
344         assert( Req != NULL );
345
346 #ifndef STRICT_RFC
347         if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS || Client_Type( Client ) == CLIENT_UNKNOWN )
348 #else
349         if( Client_Type( Client ) == CLIENT_GOTNICK || Client_Type( Client ) == CLIENT_GOTPASS )
350 #endif
351         {
352                 /* Wrong number of parameters? */
353                 if( Req->argc != 4 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
354
355                 /* User name */
356 #ifdef IDENTAUTH
357                 ptr = Client_User( Client );
358                 if( ! ptr || ! *ptr || *ptr == '~' ) Client_SetUser( Client, Req->argv[0], false );
359 #else
360                 Client_SetUser( Client, Req->argv[0], false );
361 #endif
362
363                 /* "Real name" or user info text: Don't set it to the empty string, the original ircd
364                  * can't deal with such "real names" (e. g. "USER user * * :") ... */
365                 if( *Req->argv[3] ) Client_SetInfo( Client, Req->argv[3] );
366                 else Client_SetInfo( Client, "-" );
367
368                 Log( LOG_DEBUG, "Connection %d: got valid USER command ...", Client_Conn( Client ));
369                 if( Client_Type( Client ) == CLIENT_GOTNICK ) return Hello_User( Client );
370                 else Client_SetType( Client, CLIENT_GOTUSER );
371                 return CONNECTED;
372         }
373         else if( Client_Type( Client ) == CLIENT_USER || Client_Type( Client ) == CLIENT_SERVER || Client_Type( Client ) == CLIENT_SERVICE )
374         {
375                 return IRC_WriteStrClient( Client, ERR_ALREADYREGISTRED_MSG, Client_ID( Client ));
376         }
377         else return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
378 } /* IRC_USER */
379
380
381 GLOBAL bool
382 IRC_QUIT( CLIENT *Client, REQUEST *Req )
383 {
384         CLIENT *target;
385         
386         assert( Client != NULL );
387         assert( Req != NULL );
388
389         if ( Client_Type( Client ) == CLIENT_SERVER )
390         {
391                 /* Server */
392
393                 /* Falsche Anzahl Parameter? */
394                 if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
395
396                 target = Client_Search( Req->prefix );
397                 if( ! target )
398                 {
399                         /* Den Client kennen wir nicht (mehr), also nichts zu tun. */
400                         Log( LOG_WARNING, "Got QUIT from %s for unknown client!?", Client_ID( Client ));
401                         return CONNECTED;
402                 }
403
404                 if( Req->argc == 0 ) Client_Destroy( target, "Got QUIT command.", NULL, true);
405                 else Client_Destroy( target, "Got QUIT command.", Req->argv[0], true);
406
407                 return CONNECTED;
408         }
409         else
410         {
411                 /* User, Service, oder noch nicht registriert */
412                 
413                 /* Falsche Anzahl Parameter? */
414                 if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
415
416                 if( Req->argc == 0 ) Conn_Close( Client_Conn( Client ), "Got QUIT command.", NULL, true);
417                 else Conn_Close( Client_Conn( Client ), "Got QUIT command.", Req->argv[0], true);
418                 
419                 return DISCONNECTED;
420         }
421 } /* IRC_QUIT */
422
423
424 GLOBAL bool
425 IRC_PING( CLIENT *Client, REQUEST *Req )
426 {
427         CLIENT *target, *from;
428
429         assert( Client != NULL );
430         assert( Req != NULL );
431
432         /* Falsche Anzahl Parameter? */
433         if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
434 #ifdef STRICT_RFC
435         if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
436 #endif
437
438         if( Req->argc > 1 )
439         {
440                 /* es wurde ein Ziel-Client angegeben */
441                 target = Client_Search( Req->argv[1] );
442                 if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
443                 if( target != Client_ThisServer( ))
444                 {
445                         /* ok, forwarden */
446                         if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
447                         else from = Client;
448                         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
449                         return IRC_WriteStrClientPrefix( target, from, "PING %s :%s", Client_ID( from ), Req->argv[1] );
450                 }
451         }
452
453         Log( LOG_DEBUG, "Connection %d: got PING, sending PONG ...", Client_Conn( Client ));
454         return IRC_WriteStrClient( Client, "PONG %s :%s", Client_ID( Client_ThisServer( )), Client_ID( Client ));
455 } /* IRC_PING */
456
457
458 GLOBAL bool
459 IRC_PONG( CLIENT *Client, REQUEST *Req )
460 {
461         CLIENT *target, *from;
462
463         assert( Client != NULL );
464         assert( Req != NULL );
465
466         /* Falsche Anzahl Parameter? */
467         if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NOORIGIN_MSG, Client_ID( Client ));
468         if( Req->argc > 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
469
470         /* forwarden? */
471         if( Req->argc == 2 )
472         {
473                 target = Client_Search( Req->argv[1] );
474                 if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[1] );
475                 if( target != Client_ThisServer( ))
476                 {
477                         /* ok, forwarden */
478                         if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
479                         else from = Client;
480                         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->prefix );
481                         return IRC_WriteStrClientPrefix( target, from, "PONG %s :%s", Client_ID( from ), Req->argv[1] );
482                 }
483         }
484
485         /* Der Connection-Timestamp wurde schon beim Lesen aus dem Socket
486          * aktualisiert, daher muss das hier nicht mehr gemacht werden. */
487
488         if( Client_Conn( Client ) > NONE ) Log( LOG_DEBUG, "Connection %d: received PONG. Lag: %ld seconds.", Client_Conn( Client ), time( NULL ) - Conn_LastPing( Client_Conn( Client )));
489         else Log( LOG_DEBUG, "Connection %d: received PONG.", Client_Conn( Client ));
490
491         return CONNECTED;
492 } /* IRC_PONG */
493
494
495 LOCAL bool
496 Hello_User( CLIENT *Client )
497 {
498 #ifdef CVSDATE
499         char ver[12], vertxt[30];
500 #endif
501
502         assert( Client != NULL );
503
504         /* Check password ... */
505         if( strcmp( Client_Password( Client ), Conf_ServerPwd ) != 0 )
506         {
507                 /* Bad password! */
508                 Log( LOG_ERR, "User \"%s\" rejected (connection %d): Bad password!", Client_Mask( Client ), Client_Conn( Client ));
509                 Conn_Close( Client_Conn( Client ), NULL, "Bad password", true);
510                 return DISCONNECTED;
511         }
512
513         Log( LOG_NOTICE, "User \"%s\" registered (connection %d).", Client_Mask( Client ), Client_Conn( Client ));
514
515         /* Inform other servers */
516         IRC_WriteStrServers( NULL, "NICK %s 1 %s %s 1 +%s :%s", Client_ID( Client ), Client_User( Client ), Client_Hostname( Client ), Client_Modes( Client ), Client_Info( Client ));
517
518         /* Welcome :-) */
519         if( ! IRC_WriteStrClient( Client, RPL_WELCOME_MSG, Client_ID( Client ), Client_Mask( Client ))) return false;
520
521         /* Version and system type */
522 #ifdef CVSDATE
523         strlcpy( ver, CVSDATE, sizeof( ver ));
524         strncpy( ver + 4, ver + 5, 2 );
525         strncpy( ver + 6, ver + 8, 3 );
526         snprintf( vertxt, sizeof( vertxt ), "%s(%s)", PACKAGE_VERSION, ver );
527         if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), vertxt, TARGET_CPU, TARGET_VENDOR, TARGET_OS )) return false;
528 #else
529         if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), PACKAGE_VERSION, TARGET_CPU, TARGET_VENDOR, TARGET_OS )) return false;
530 #endif
531
532         if( ! IRC_WriteStrClient( Client, RPL_CREATED_MSG, Client_ID( Client ), NGIRCd_StartStr )) return false;
533 #ifdef CVSDATE
534         if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), vertxt, USERMODES, CHANMODES )) return false;  
535 #else
536         if( ! IRC_WriteStrClient( Client, RPL_MYINFO_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), PACKAGE_VERSION, USERMODES, CHANMODES )) return false;
537 #endif
538
539         /* Features */
540         if( ! IRC_WriteStrClient( Client, RPL_ISUPPORT_MSG, Client_ID( Client ), CLIENT_NICK_LEN - 1, CHANNEL_TOPIC_LEN - 1, CLIENT_AWAY_LEN - 1, Conf_MaxJoins )) return DISCONNECTED;
541
542         Client_SetType( Client, CLIENT_USER );
543
544         if( ! IRC_Send_LUSERS( Client )) return DISCONNECTED;
545         if( ! IRC_Show_MOTD( Client )) return DISCONNECTED;
546
547         /* Suspend the client for a second ... */
548         IRC_SetPenalty( Client, 1 );
549
550         return CONNECTED;
551 } /* Hello_User */
552
553
554 LOCAL void
555 Kill_Nick( char *Nick, char *Reason )
556 {
557         REQUEST r;
558
559         assert( Nick != NULL );
560         assert( Reason != NULL );
561
562         r.prefix = (char *)Client_ThisServer( );
563         r.argv[0] = Nick;
564         r.argv[1] = Reason;
565         r.argc = 2;
566
567         Log( LOG_ERR, "User(s) with nick \"%s\" will be disconnected: %s", Nick, Reason );
568         IRC_KILL( Client_ThisServer( ), &r );
569 } /* Kill_Nick */
570
571
572 /* -eof- */