/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */ #ifndef _XWRELAY_PRIV_H_ #define _XWRELAY_PRIV_H_ #include typedef unsigned char HostID; typedef enum { XW_LOGERROR ,XW_LOGINFO ,XW_LOGVERBOSE0 ,XW_LOGVERBOSE1 } XW_LogLevel; void logf( XW_LogLevel level, const char* format, ... ); void killSocket( int socket, const char* why ); int send_with_length_unsafe( int socket, unsigned char* buf, int bufLen ); time_t now(); #endif