X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fconn.h;fp=src%2Fngircd%2Fconn.h;h=8876c72c8e49c3bc94dacaec014510ae52a11748;hb=a34d8ae59f8d71ac7573aab63d73bceb388cfe4b;hp=ffbfe64a909d9813ebb05fc6aded31bf9cbe168f;hpb=d917f06af830d1e0ab2f48be08498402e5e7c22b;p=ngircd.git diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index ffbfe64a..8876c72c 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: conn.h,v 1.31 2003/03/27 01:20:22 alex Exp $ + * $Id: conn.h,v 1.31.2.1 2003/12/26 16:16:48 alex Exp $ * * Connection management (header) */ @@ -23,7 +23,7 @@ #define CONN_ISCLOSING 1 /* Conn_Close() already called */ -#ifdef USE_ZLIB +#ifdef ZLIB #define CONN_ZIP 2 /* zlib compressed link */ #endif @@ -36,7 +36,7 @@ typedef INT CONN_ID; #include "defines.h" #include "resolve.h" -#ifdef USE_ZLIB +#ifdef ZLIB #include typedef struct _ZipData { @@ -48,7 +48,7 @@ typedef struct _ZipData INT wdatalen; /* Length of data in write buffer (uncompressed) */ LONG bytes_in, bytes_out; /* Counter for statistics (uncompressed!) */ } ZIPDATA; -#endif /* USE_ZLIB */ +#endif /* ZLIB */ typedef struct _Connection { @@ -69,9 +69,9 @@ typedef struct _Connection LONG msg_in, msg_out; /* Received and sent IRC messages */ INT flag; /* Flag (see "irc-write" module) */ INT options; /* Link options */ -#ifdef USE_ZLIB +#ifdef ZLIB ZIPDATA zip; /* Compression information */ -#endif /* USE_ZLIB */ +#endif /* ZLIB */ } CONNECTION; GLOBAL CONNECTION *My_Connections;