summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2006-12-24 17:01:35 +0000
committerphintuka <phintuka>2006-12-24 17:01:35 +0000
commit84f327969b4636cbace94f294acdc054c84eb3e0 (patch)
tree2aef1438a393a084875c4b0890c62fb3bbe8b42d
parent8c189b08720bfb14e94e96b533150b1008468540 (diff)
downloadxineliboutput-84f327969b4636cbace94f294acdc054c84eb3e0.tar.gz
xineliboutput-84f327969b4636cbace94f294acdc054c84eb3e0.tar.bz2
Connection state (HTTP, RTSP)
-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;