summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend_svr.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/frontend_svr.h b/frontend_svr.h
index beed3b2b..51d305b7 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.12 2006-12-19 16:36:46 phintuka Exp $
+ * $Id: frontend_svr.h,v 1.13 2006-12-24 17:01:35 phintuka Exp $
*
*/
@@ -22,6 +22,7 @@ class cBackgroundWriter;
class cUdpScheduler;
class cStcFuture;
class cCmdFutures;
+class cConnState;
class cXinelibServer : public cXinelibThread
{
@@ -113,9 +114,10 @@ protected:
cString m_PipesDir;
- cBackgroundWriter *m_Writer[MAXCLIENTS];
+ cBackgroundWriter *m_Writer[MAXCLIENTS]; // buffered output (pipe/tcp/http)
+ cConnState *m_State[MAXCLIENTS]; // connection state (http/rtsp)
cUdpScheduler *m_Scheduler;
- bool m_Master;
+ bool m_Master;
cStcFuture *m_StcFuture;
cCmdFutures *m_Futures;