]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conn.h
Code cleanup: mostly removing empty lines
[ngircd-alex.git] / src / ngircd / conn.h
index a0bddaac95d090735bf652e3d3829e9436c4a376..4228c9e41b933a3de5bd60e2638a78ecc895fc39 100644 (file)
@@ -7,14 +7,15 @@
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
- *
- * Connection management (header)
  */
 
-
 #ifndef __conn_h__
 #define __conn_h__
 
+/**
+ * @file
+ * Connection management (header)
+ */
 
 #include <time.h>                      /* for time_t, see below */
 
@@ -122,14 +123,19 @@ GLOBAL PROC_STAT* Conn_GetProcStat PARAMS((CONN_ID i));
 GLOBAL bool Conn_GetCipherInfo PARAMS((CONN_ID Idx, char *buf, size_t len));
 GLOBAL bool Conn_UsesSSL PARAMS((CONN_ID Idx));
 #else
-static inline bool Conn_UsesSSL(UNUSED CONN_ID Idx) { return false; }
+static inline bool
+Conn_UsesSSL(UNUSED CONN_ID Idx)
+{ return false; }
 #endif
 
 GLOBAL long Conn_Count PARAMS((void));
 GLOBAL long Conn_CountMax PARAMS((void));
 GLOBAL long Conn_CountAccepted PARAMS((void));
 
+#ifdef DEBUG
+GLOBAL void Conn_DebugDump PARAMS((void));
 #endif
 
+#endif
 
 /* -eof- */