- Debug-Meldungen angepasst.

This commit is contained in:
Alexander Barton 2001-12-25 23:13:33 +00:00
parent f2c7d188ca
commit 45d447d971
1 changed files with 13 additions and 10 deletions

View 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: irc.c,v 1.5 2001/12/25 22:02:42 alex Exp $
* $Id: irc.c,v 1.6 2001/12/25 23:13:33 alex Exp $
*
* irc.c: IRC-Befehle
*
* $Log: irc.c,v $
* Revision 1.6 2001/12/25 23:13:33 alex
* - Debug-Meldungen angepasst.
*
* Revision 1.5 2001/12/25 22:02:42 alex
* - neuer IRC-Befehl "/QUIT". Verbessertes Logging & Debug-Ausgaben.
*
@ -110,7 +113,7 @@ GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req )
if( Client->type == CLIENT_UNKNOWN )
{
Log( LOG_DEBUG, "Registration of connection %d: got PASS command ...", Client->conn_id );
Log( LOG_DEBUG, "Connection %d: got PASS command ...", Client->conn_id );
return IRC_WriteStr_Client( Client, This_Server, ERR_UNKNOWNCOMMAND_MSG, Req->command );
}
else return IRC_WriteStr_Client( Client, This_Server, ERR_ALREADYREGISTRED_MSG );
@ -150,7 +153,7 @@ GLOBAL BOOLEAN IRC_NICK( CLIENT *Client, REQUEST *Req )
if( Client->type != CLIENT_USER )
{
/* Neuer Client */
Log( LOG_DEBUG, "Registration of connection %d: got NICK command ...", Client->conn_id );
Log( LOG_DEBUG, "Connection %d: got NICK command ...", Client->conn_id );
if( Client->type == CLIENT_GOTUSER ) return Hello_User( Client );
else Client->type = CLIENT_GOTNICK;
}
@ -175,7 +178,7 @@ GLOBAL BOOLEAN IRC_USER( CLIENT *Client, REQUEST *Req )
strncpy( Client->name, Req->argv[3], CLIENT_NAME_LEN );
Client->name[CLIENT_NAME_LEN] = '\0';
Log( LOG_DEBUG, "Registration of connection %d: got USER command ...", Client->conn_id );
Log( LOG_DEBUG, "Connection %d: got USER command ...", Client->conn_id );
if( Client->type == CLIENT_GOTNICK ) return Hello_User( Client );
else Client->type = CLIENT_GOTUSER;
return CONNECTED;