commit - 7a6f99a607176e9172877fe3de68c3cf8f700166
commit + 1d8cb34bc88c8891a1d6a7c3a78ff78909e9f8bf
blob - bd7526975b98cf0fb73be939d52ce3f0efcbd600
blob + 4eeec13ae75f2d9c7d828b57bbf1cb724e9d2e01
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.c,v 1.98 2002/11/28 16:56:20 alex Exp $
+ * $Id: conn.c,v 1.99 2002/11/29 13:13:42 alex Exp $
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*/
if( InformClient )
{
+#ifndef STRICT_RFC
/* Statistik an Client melden, wenn User */
if(( c != NULL ) && ( Client_Type( c ) == CLIENT_USER ))
{
Conn_WriteStr( Idx, "NOTICE %s :%sConnection statistics: client %.1f kb, server %.1f kb.", Client_ThisServer( ), NOTICE_TXTPREFIX, (DOUBLE)My_Connections[Idx].bytes_in / 1024, (DOUBLE)My_Connections[Idx].bytes_out / 1024 );
}
+#endif
/* ERROR an Client schicken (von RFC so vorgesehen!) */
if( FwdMsg ) Conn_WriteStr( Idx, "ERROR :%s", FwdMsg );
if( s )
{
/* Sub-Prozess wurde asyncron gestartet */
+#ifndef STRICT_RFC
Conn_WriteStr( idx, "NOTICE AUTH :%sLooking up your hostname ...", NOTICE_TXTPREFIX );
+#endif
My_Connections[idx].res_stat = s;
}
* Tritt ein Fehler auf, so wird der Socket geschlossen. */
INT len, bsize;
+#ifdef USE_ZLIB
CLIENT *c;
+#endif
assert( Idx > NONE );
assert( My_Connections[Idx].sock > NONE );
strcpy( My_Connections[i].host, result );
Client_SetHostname( c, result );
+#ifndef STRICT_RFC
Conn_WriteStr( i, "NOTICE AUTH :%sGot your hostname.", NOTICE_TXTPREFIX );
+#endif
}
else
{