diff options
author | phintuka <phintuka> | 2006-12-15 15:32:59 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-12-15 15:32:59 +0000 |
commit | 420ef20c922d2c687b41e5c76064dfa951b0b740 (patch) | |
tree | 748ee99247fb15f624f1a9a477d614d95b213f5c | |
parent | 8b05599f3b9ccbe4d39f05b4dd6bb2252b34ac38 (diff) | |
download | xineliboutput-420ef20c922d2c687b41e5c76064dfa951b0b740.tar.gz xineliboutput-420ef20c922d2c687b41e5c76064dfa951b0b740.tar.bz2 |
Added connection type (normal, http, rtsp)
-rw-r--r-- | frontend_svr.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/frontend_svr.h b/frontend_svr.h index 75c912d1..75cd3f63 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.10 2006-12-14 14:43:46 phintuka Exp $ + * $Id: frontend_svr.h,v 1.11 2006-12-15 15:32:59 phintuka Exp $ * */ @@ -83,6 +83,9 @@ protected: void Handle_Control_UDP_RESEND(int cli, const char *arg); void Handle_Control_CONFIG(int cli); void Handle_Control_GRAB(int cli, const char *arg); + void Handle_Control_CONTROL(int cli, const char *arg); + void Handle_Control_HTTP(int cli, const char *arg); + void Handle_Control_RTSP(int cli, const char *arg); void CloseConnection(int cli); @@ -101,7 +104,7 @@ protected: int m_CtrlBufPos[MAXCLIENTS]; bool m_bUdp[MAXCLIENTS]; - bool m_bRtcp[MAXCLIENTS]; + int m_ConnType[MAXCLIENTS]; bool m_bMulticast[MAXCLIENTS]; bool m_bConfigOk[MAXCLIENTS]; int m_iMulticastMask; // bit [cli] is 1 or 0. 1 == multicast in use. |