diff options
-rw-r--r-- | frontend_svr.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/frontend_svr.h b/frontend_svr.h index 98a8d1c0..34056bbb 100644 --- a/frontend_svr.h +++ b/frontend_svr.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.h,v 1.15 2007-01-07 05:39:16 phintuka Exp $ + * $Id: frontend_svr.h,v 1.16 2007-01-20 16:58:08 phintuka Exp $ * */ @@ -24,6 +24,8 @@ class cStcFuture; class cCmdFutures; class cConnState; +#include "tools/cxsocket.h" + class cXinelibServer : public cXinelibThread { @@ -98,9 +100,11 @@ protected: int fd_listen; int fd_discovery; - int fd_control[MAXCLIENTS]; - int fd_data[MAXCLIENTS]; + cxSocket fd_control[MAXCLIENTS]; + int fd_data[MAXCLIENTS]; + + int m_OsdTimeouts[MAXCLIENTS]; char m_CtrlBuf[MAXCLIENTS][1024+1]; int m_CtrlBufPos[MAXCLIENTS]; |