mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
3054637842
heartbeat and other messages arrive; and periodically reap sockets that haven't been active in long enough.
15 lines
335 B
C
15 lines
335 B
C
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
|
|
|
#ifndef _XWRELAY_PRIV_H_
|
|
#define _XWRELAY_PRIV_H_
|
|
|
|
typedef unsigned short HostID;
|
|
typedef unsigned short CookieID; /* stands in for string after connection established */
|
|
|
|
void logf( const char* format, ... );
|
|
|
|
void killSocket( int socket, char* why );
|
|
|
|
time_t now();
|
|
|
|
#endif
|