]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conn.h
Refactoring: Rename CONNECTION.res_stat to .proc_stat
[ngircd-alex.git] / src / ngircd / conn.h
index 1cfa466602379f7c8dc6f7b49e4a59d9ead2367e..7665bb374166bc501c19c6057cb7afd68e0dca63 100644 (file)
@@ -48,7 +48,7 @@ typedef long CONN_ID;
 #ifdef CONN_MODULE
 
 #include "defines.h"
-#include "resolve.h"
+#include "proc.h"
 #include "array.h"
 #include "tool.h"
 #include "ng_ipaddr.h"
@@ -69,7 +69,7 @@ typedef struct _Connection
 {
        int sock;                       /* Socket handle */
        ng_ipaddr_t addr;               /* Client address */
-       RES_STAT res_stat;              /* Status of resolver process */
+       PROC_STAT proc_stat;            /* Status of resolver process */
        char host[HOST_LEN];            /* Hostname */
        array rbuf;                     /* Read buffer */
        array wbuf;                     /* Write buffer */
@@ -120,11 +120,12 @@ GLOBAL bool Conn_UsesSSL PARAMS((CONN_ID Idx));
 #else
 static inline bool Conn_UsesSSL(UNUSED CONN_ID Idx) { return false; }
 #endif
-#endif
 
 GLOBAL long Conn_Count PARAMS((void));
 GLOBAL long Conn_CountMax PARAMS((void));
 GLOBAL long Conn_CountAccepted PARAMS((void));
 
+#endif
+
 
 /* -eof- */