X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fclient.c;h=51338021d462acf64adfd134d1515e4ea0384488;hp=6b574763744a321b3ad55941af45e807efd323c5;hb=a1a3e67de69ee37bbf1bb7fd8eb1451e1ff5eff4;hpb=7157d9365157d969c1f7db14e6bc67825d9fc14d diff --git a/src/ngircd/client.c b/src/ngircd/client.c index 6b574763..51338021 100644 --- a/src/ngircd/client.c +++ b/src/ngircd/client.c @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: client.c,v 1.41 2002/03/02 01:35:50 alex Exp $ + * $Id: client.c,v 1.43 2002/03/04 01:04:46 alex Exp $ * * client.c: Management aller Clients * @@ -21,6 +21,12 @@ * Server gewesen, so existiert eine entsprechende CONNECTION-Struktur. * * $Log: client.c,v $ + * Revision 1.43 2002/03/04 01:04:46 alex + * - neuen Clients mit Mode "a" wird nun auch der Default-Away-Text gesetzt. + * + * Revision 1.42 2002/03/03 17:17:01 alex + * - strncpy() und vsnprintf() kopieren nun etwas "optimierter" (1 Byte weniger) :-) + * * Revision 1.41 2002/03/02 01:35:50 alex * - Channel- und Nicknames werden nun ordentlich validiert. * @@ -296,6 +302,9 @@ GLOBAL CLIENT *Client_New( CONN_ID Idx, CLIENT *Introducer, CLIENT *TopServer, I if( Modes ) Client_SetModes( client, Modes ); if( Type == CLIENT_SERVER ) Generate_MyToken( client ); + /* ist der User away? */ + if( strchr( client->modes, 'a' )) strcpy( client->away, DEFAULT_AWAY_MSG ); + /* Verketten */ client->next = My_Clients; My_Clients = client; @@ -398,7 +407,7 @@ GLOBAL VOID Client_SetHostname( CLIENT *Client, CHAR *Hostname ) /* Hostname eines Clients setzen */ assert( Client != NULL ); - strncpy( Client->host, Hostname, CLIENT_HOST_LEN ); + strncpy( Client->host, Hostname, CLIENT_HOST_LEN - 1 ); Client->host[CLIENT_HOST_LEN - 1] = '\0'; } /* Client_SetHostname */ @@ -408,7 +417,7 @@ GLOBAL VOID Client_SetID( CLIENT *Client, CHAR *ID ) /* Hostname eines Clients setzen */ assert( Client != NULL ); - strncpy( Client->id, ID, CLIENT_ID_LEN ); + strncpy( Client->id, ID, CLIENT_ID_LEN - 1 ); Client->id[CLIENT_ID_LEN - 1] = '\0'; } /* Client_SetID */ @@ -418,11 +427,11 @@ GLOBAL VOID Client_SetUser( CLIENT *Client, CHAR *User, BOOLEAN Idented ) /* Username eines Clients setzen */ assert( Client != NULL ); - if( Idented ) strncpy( Client->user, User, CLIENT_USER_LEN ); + if( Idented ) strncpy( Client->user, User, CLIENT_USER_LEN - 1 ); else { Client->user[0] = '~'; - strncpy( Client->user + 1, User, CLIENT_USER_LEN - 1 ); + strncpy( Client->user + 1, User, CLIENT_USER_LEN - 2 ); } Client->user[CLIENT_USER_LEN - 1] = '\0'; } /* Client_SetUser */ @@ -433,7 +442,7 @@ GLOBAL VOID Client_SetInfo( CLIENT *Client, CHAR *Info ) /* Hostname eines Clients setzen */ assert( Client != NULL ); - strncpy( Client->info, Info, CLIENT_INFO_LEN ); + strncpy( Client->info, Info, CLIENT_INFO_LEN - 1 ); Client->info[CLIENT_INFO_LEN - 1] = '\0'; } /* Client_SetInfo */ @@ -443,7 +452,7 @@ GLOBAL VOID Client_SetModes( CLIENT *Client, CHAR *Modes ) /* Hostname eines Clients setzen */ assert( Client != NULL ); - strncpy( Client->modes, Modes, CLIENT_MODE_LEN ); + strncpy( Client->modes, Modes, CLIENT_MODE_LEN - 1 ); Client->modes[CLIENT_MODE_LEN - 1] = '\0'; } /* Client_SetModes */ @@ -453,7 +462,7 @@ GLOBAL VOID Client_SetPassword( CLIENT *Client, CHAR *Pwd ) /* Von einem Client geliefertes Passwort */ assert( Client != NULL ); - strncpy( Client->pwd, Pwd, CLIENT_PASS_LEN ); + strncpy( Client->pwd, Pwd, CLIENT_PASS_LEN - 1 ); Client->pwd[CLIENT_PASS_LEN - 1] = '\0'; } /* Client_SetPassword */ @@ -467,7 +476,7 @@ GLOBAL VOID Client_SetAway( CLIENT *Client, CHAR *Txt ) if( Txt ) { /* Client AWAY setzen */ - strncpy( Client->away, Txt, CLIENT_AWAY_LEN ); + strncpy( Client->away, Txt, CLIENT_AWAY_LEN - 1 ); Client->away[CLIENT_AWAY_LEN - 1] = '\0'; Client_ModeAdd( Client, 'a' ); Log( LOG_DEBUG, "User \"%s\" is away: %s", Client_Mask( Client ), Txt ); @@ -584,17 +593,17 @@ GLOBAL CLIENT *Client_GetFromConn( CONN_ID Idx ) GLOBAL CLIENT *Client_GetFromID( CHAR *Nick ) { - /* Client-Struktur, die den entsprechenden Nick hat, - * liefern. Wird keine gefunden, so wird NULL geliefert. */ + /* Client-Struktur, die den entsprechenden Nick hat, liefern. + * Wird keine gefunden, so wird NULL geliefert. */ - CHAR n[CLIENT_ID_LEN + 1], *ptr; + CHAR n[CLIENT_ID_LEN], *ptr; CLIENT *c = NULL; assert( Nick != NULL ); /* Nick kopieren und ggf. Host-Mask abschneiden */ - strncpy( n, Nick, CLIENT_ID_LEN ); - n[CLIENT_ID_LEN] = '\0'; + strncpy( n, Nick, CLIENT_ID_LEN - 1 ); + n[CLIENT_ID_LEN - 1] = '\0'; ptr = strchr( n, '!' ); if( ptr ) *ptr = '\0';