1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 12:56:18 +00:00

- Logmeldungen fuer Server- und Protokollversionen verbessert.

This commit is contained in:
Alexander Barton 2002-09-02 19:31:26 +00:00
parent bfa5fd3add
commit c0910498e8

View File

@ -9,7 +9,7 @@
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: irc-login.c,v 1.16 2002/09/02 19:04:30 alex Exp $ * $Id: irc-login.c,v 1.17 2002/09/02 19:31:26 alex Exp $
* *
* irc-login.c: Anmeldung und Abmeldung im IRC * irc-login.c: Anmeldung und Abmeldung im IRC
*/ */
@ -100,12 +100,12 @@ IRC_PASS( CLIENT *Client, REQUEST *Req )
flags++; flags++;
} }
else flags = ""; else flags = "";
Log( LOG_INFO, "Other server is \"%s\" %s (flags: \"%s\"), using protocol version %d.%d.", impl, serverver, flags, protohigh, protolow ); Log( LOG_INFO, "Connection %d: Peer announces itself as %s-%s (flags: \"%s\") using protocol version %d.%d.", Client_Conn( Client ), impl, serverver, flags, protohigh, protolow );
} }
else else
{ {
serverver = flags = ""; serverver = flags = "";
Log( LOG_INFO, "Other server is \"%s\" using protocol version %d.%d.", impl, protohigh, protolow ); Log( LOG_INFO, "Connection %d: Peer announces itself as server of type \"%s\" usinf protocol version %d.%d.", Client_Conn( Client ), impl, protohigh, protolow );
} }
Client_SetType( Client, CLIENT_GOTPASSSERVER ); Client_SetType( Client, CLIENT_GOTPASSSERVER );