]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- PING/PONG-Befehle implementiert.
authorAlexander Barton <alex@barton.de>
Wed, 26 Dec 2001 03:23:03 +0000 (03:23 +0000)
committerAlexander Barton <alex@barton.de>
Wed, 26 Dec 2001 03:23:03 +0000 (03:23 +0000)
src/ngircd/parse.c

index 2d539bdd56e484b439731d5b3886f9b7fa974726..aa78357214b34f2d0613f653375d30cca29c79e0 100644 (file)
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: parse.c,v 1.4 2001/12/25 22:04:26 alex Exp $
+ * $Id: parse.c,v 1.5 2001/12/26 03:23:03 alex Exp $
  *
  * parse.c: Parsen der Client-Anfragen
  *
  * $Log: parse.c,v $
+ * Revision 1.5  2001/12/26 03:23:03  alex
+ * - PING/PONG-Befehle implementiert.
+ *
  * Revision 1.4  2001/12/25 22:04:26  alex
  * - Aenderungen an den Debug- und Logging-Funktionen.
  *
@@ -219,10 +222,12 @@ LOCAL BOOLEAN Handle_Request( CONN_ID Idx, REQUEST *Req )
        else if( strcasecmp( Req->command, "NICK" ) == 0 ) return IRC_NICK( client, Req );
        else if( strcasecmp( Req->command, "USER" ) == 0 ) return IRC_USER( client, Req );
        else if( strcasecmp( Req->command, "QUIT" ) == 0 ) return IRC_QUIT( client, Req );
+       else if( strcasecmp( Req->command, "PING" ) == 0 ) return IRC_PING( client, Req );
+       else if( strcasecmp( Req->command, "PONG" ) == 0 ) return IRC_PONG( client, Req );
        else if( strcasecmp( Req->command, "MOTD" ) == 0 ) return IRC_MOTD( client, Req );
 
        /* Unbekannter Befehl */
-       Conn_WriteStr( Idx, ERR_UNKNOWNCOMMAND_MSG, Req->command );
+       IRC_WriteStr_Client( client, This_Server, ERR_UNKNOWNCOMMAND_MSG, Client_Name( client ), Req->command );
 
        Log( LOG_DEBUG, "Connection %d: Unknown command '%s', %d %s,%s prefix.", Idx, Req->command, Req->argc, Req->argc == 1 ? "parameter" : "parameters", Req->prefix ? "" : " no" );