diff options
author | phintuka <phintuka> | 2007-01-20 16:58:08 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-01-20 16:58:08 +0000 |
commit | 06c0995bc7fb835fe439399866bcaa5ba0a093d0 (patch) | |
tree | 515e1a65b32fed224464dd6e8c53ac5828cf3ef7 | |
parent | 585b1eed158cf6c2b4b5134d10e9725325844599 (diff) | |
download | xineliboutput-06c0995bc7fb835fe439399866bcaa5ba0a093d0.tar.gz xineliboutput-06c0995bc7fb835fe439399866bcaa5ba0a093d0.tar.bz2 |
OSD timeouts counter
Use socket wrapper class for control connections
-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]; |