X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fconn.h;h=7665bb374166bc501c19c6057cb7afd68e0dca63;hb=89e73ad4b4e66921fc20c5afbe17042aee77a329;hp=f2ec823ea6ee25bed5af38149263cbd228a6a2f7;hpb=1338ade65032e5aea4891694a61d8ee3d1c795e1;p=ngircd-alex.git diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index f2ec823e..7665bb37 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -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 */ @@ -107,7 +107,7 @@ GLOBAL void Conn_ExitListeners PARAMS(( void )); GLOBAL void Conn_Handler PARAMS(( void )); -GLOBAL bool Conn_WriteStr PARAMS(( CONN_ID Idx, char *Format, ... )); +GLOBAL bool Conn_WriteStr PARAMS(( CONN_ID Idx, const char *Format, ... )); GLOBAL void Conn_Close PARAMS(( CONN_ID Idx, const char *LogMsg, const char *FwdMsg, bool InformClient )); @@ -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- */