commit b6254bbbb37e0d22290380feb5afda825bfde0a8 from: Alexander Barton date: Wed Jan 02 02:43:22 2002 UTC - Copyright-Texte aktualisiert. - neuer Befehl ERROR. commit - 1547f76cfdfabe2226af2e35196316b21a32937c commit + b6254bbbb37e0d22290380feb5afda825bfde0a8 blob - fb451d026e88d19d1e2b731c0552f8e8ddf7d6d6 blob + 560a933766a4f5f0d704f45b73091c095fcd4410 --- src/ngircd/parse.c +++ src/ngircd/parse.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001 by Alexander Barton (alex@barton.de) + * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen * der GNU General Public License (GPL), wie von der Free Software Foundation @@ -9,11 +9,15 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: parse.c,v 1.10 2001/12/31 15:33:13 alex Exp $ + * $Id: parse.c,v 1.11 2002/01/02 02:43:22 alex Exp $ * * parse.c: Parsen der Client-Anfragen * * $Log: parse.c,v $ + * Revision 1.11 2002/01/02 02:43:22 alex + * - Copyright-Texte aktualisiert. + * - neuer Befehl ERROR. + * * Revision 1.10 2001/12/31 15:33:13 alex * - neuer Befehl NAMES, kleinere Bugfixes. * - Bug bei PING behoben: war zu restriktiv implementiert :-) @@ -255,6 +259,7 @@ LOCAL BOOLEAN Handle_Request( CONN_ID Idx, REQUEST *Re else if( strcasecmp( Req->command, "OPER" ) == 0 ) return IRC_OPER( client, Req ); else if( strcasecmp( Req->command, "DIE" ) == 0 ) return IRC_DIE( client, Req ); else if( strcasecmp( Req->command, "RESTART" ) == 0 ) return IRC_RESTART( client, Req ); + else if( strcasecmp( Req->command, "ERROR" ) == 0 ) return IRC_ERROR( client, Req ); /* Unbekannter Befehl */ IRC_WriteStrClient( client, This_Server, ERR_UNKNOWNCOMMAND_MSG, Client_Nick( client ), Req->command );