about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-09-16 09:20:27 +0000
committerAlexander Barton <alex@barton.de>2002-09-16 09:20:27 +0000
commit5502fb271db2b9466a571d0c8b7b3352e43ae537 (patch)
tree3b2c927a4d5b268ad8106e4f9cfa54c304c6470b /src
parente6f96a7a8605de5cfefa3a557dc7a6b694a0c437 (diff)
downloadngircd-5502fb271db2b9466a571d0c8b7b3352e43ae537.tar.gz
ngircd-5502fb271db2b9466a571d0c8b7b3352e43ae537.zip
- neuer Befehl: ADMIN
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/parse.c b/src/ngircd/parse.c
index b5b444b7..6d1efef6 100644
--- a/src/ngircd/parse.c
+++ b/src/ngircd/parse.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: parse.c,v 1.40 2002/09/08 00:53:13 alex Exp $
+ * $Id: parse.c,v 1.41 2002/09/16 09:20:27 alex Exp $
  *
  * parse.c: Parsen der Client-Anfragen
  */
@@ -348,6 +348,7 @@ Handle_Request( CONN_ID Idx, REQUEST *Req )
 	else if( strcasecmp( Req->command, "INVITE" ) == 0 ) return IRC_INVITE( client, Req );
 	else if( strcasecmp( Req->command, "KICK" ) == 0 ) return IRC_KICK( client, Req );
 	else if( strcasecmp( Req->command, "CONNECT" ) == 0 ) return IRC_CONNECT( client, Req );
+	else if( strcasecmp( Req->command, "ADMIN" ) == 0 ) return IRC_ADMIN( client, Req );
 #ifdef IRCPLUS
 	else if( strcasecmp( Req->command, "CHANINFO" ) == 0 ) return IRC_CHANINFO( client, Req );
 #endif