diff options
| author | Alexander Barton <alex@barton.de> | 2002-04-23 19:50:27 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-04-23 19:50:27 +0000 |
| commit | 9d2407dbc50ccebc8cfc3bb1748665a51cf506a0 (patch) | |
| tree | 6312459add7212f59759ee0961cb6cd339b467e1 | |
| parent | 28a58717beb140d4320bfc1273148c0ed8d0df14 (diff) | |
| download | ngircd-9d2407dbc50ccebc8cfc3bb1748665a51cf506a0.tar.gz ngircd-9d2407dbc50ccebc8cfc3bb1748665a51cf506a0.zip | |
- Neue IRC-Funktion LIST implementiert.
| -rw-r--r-- | src/ngircd/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/parse.c b/src/ngircd/parse.c index b1782ef4..a1348fe2 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.31 2002/03/25 17:13:46 alex Exp $ + * $Id: parse.c,v 1.32 2002/04/23 19:50:27 alex Exp $ * * parse.c: Parsen der Client-Anfragen */ @@ -292,6 +292,7 @@ LOCAL BOOLEAN Handle_Request( CONN_ID Idx, REQUEST *Req ) else if( strcasecmp( Req->command, "AWAY" ) == 0 ) return IRC_AWAY( client, Req ); else if( strcasecmp( Req->command, "TOPIC" ) == 0 ) return IRC_TOPIC( client, Req ); else if( strcasecmp( Req->command, "WHO" ) == 0 ) return IRC_WHO( client, Req ); + else if( strcasecmp( Req->command, "LIST" ) == 0 ) return IRC_LIST( client, Req ); /* Unbekannter Befehl */ if( Client_Type( client ) != CLIENT_SERVER ) IRC_WriteStrClient( client, ERR_UNKNOWNCOMMAND_MSG, Client_ID( client ), Req->command ); |