commit 437f2c335f00310b1ace44e08f52b363599adc1a from: Alexander Barton date: Mon Dec 30 16:07:50 2002 UTC - Renamed functions now found in "conn-zip.c". commit - e68cdf304f1242bbeb3f0b59323f3059d0d543c4 commit + 437f2c335f00310b1ace44e08f52b363599adc1a blob - de50adae90f46d3249533314d914e16c6dd6af3e blob + 4add048b18525894c4e34d4672854a438638077c --- src/ngircd/irc-info.c +++ src/ngircd/irc-info.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-info.c,v 1.11 2002/12/26 17:14:48 alex Exp $"; +static char UNUSED id[] = "$Id: irc-info.c,v 1.12 2002/12/30 16:07:50 alex Exp $"; #include "imp.h" #include @@ -24,6 +24,7 @@ static char UNUSED id[] = "$Id: irc-info.c,v 1.11 2002 #include "ngircd.h" #include "conn.h" +#include "conn-zip.h" #include "client.h" #include "channel.h" #include "resolve.h" @@ -375,7 +376,7 @@ IRC_STATS( CLIENT *Client, REQUEST *Req ) #ifdef USE_ZLIB if( Conn_Options( con ) & CONN_ZIP ) { - if( ! IRC_WriteStrClient( from, RPL_STATSLINKINFOZIP_MSG, Client_ID( from ), Client_Mask( cl ), Conn_SendQ( con ), Conn_SendMsg( con ), Conn_SendBytesZip( con ), Conn_SendBytes( con ), Conn_RecvMsg( con ), Conn_RecvBytesZip( con ), Conn_RecvBytes( con ), (LONG)( time( NULL ) - Conn_StartTime( con )))) return DISCONNECTED; + if( ! IRC_WriteStrClient( from, RPL_STATSLINKINFOZIP_MSG, Client_ID( from ), Client_Mask( cl ), Conn_SendQ( con ), Conn_SendMsg( con ), Zip_SendBytes( con ), Conn_SendBytes( con ), Conn_RecvMsg( con ), Zip_RecvBytes( con ), Conn_RecvBytes( con ), (LONG)( time( NULL ) - Conn_StartTime( con )))) return DISCONNECTED; } else #endif blob - ea0e5573afd1113bd42918ac8da95eac4b3a031b blob + 99b5cb095bae2a481bc10c56327adfe1342f4ed8 --- src/ngircd/irc-server.c +++ src/ngircd/irc-server.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-server.c,v 1.29 2002/12/30 00:01:45 alex Exp $"; +static char UNUSED id[] = "$Id: irc-server.c,v 1.30 2002/12/30 16:07:50 alex Exp $"; #include "imp.h" #include @@ -24,6 +24,7 @@ static char UNUSED id[] = "$Id: irc-server.c,v 1.29 20 #include "resolve.h" #include "conn.h" +#include "conn-zip.h" #include "conf.h" #include "client.h" #include "channel.h" @@ -120,7 +121,7 @@ IRC_SERVER( CLIENT *Client, REQUEST *Req ) /* Kompression initialisieren, wenn erforderlich */ if( strchr( Client_Flags( Client ), 'Z' )) { - if( ! Conn_InitZip( con )) + if( ! Zip_InitConn( con )) { /* Fehler! */ Conn_Close( con, "Can't inizialize compression (zlib)!", NULL, FALSE );