about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2003-02-21 19:18:48 +0000
committerAlexander Barton <alex@barton.de>2003-02-21 19:18:48 +0000
commit2a3f8cc57d1e4797731e6e06649b32e57067c19b (patch)
tree83821a79483754047d5f9f12dcb956f7947007cd
parent560c79615c37bd1149e90ab1a8663813ea99f6a3 (diff)
downloadngircd-2a3f8cc57d1e4797731e6e06649b32e57067c19b.tar.gz
ngircd-2a3f8cc57d1e4797731e6e06649b32e57067c19b.zip
- new link "option" constant: CONN_ISCLOSING
-rw-r--r--src/ngircd/conn.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h
index e9ca711d..2194f537 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.29 2002/12/30 17:14:59 alex Exp $
+ * $Id: conn.h,v 1.30 2003/02/21 19:18:48 alex Exp $
  *
  * Connection management (header)
  */
@@ -18,11 +18,13 @@
 #define __conn_h__
 
 
-#include <time.h>			/* wg. time_t, s.u. */
+#include <time.h>			/* fro time_t, see below */
 
 
+#define CONN_ISCLOSING 1		/* Conn_Close() already called */
+
 #ifdef USE_ZLIB
-#define CONN_ZIP 4			/* Kompression mit zlib */
+#define CONN_ZIP 2			/* zlib compressed link */
 #endif