diff options
-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. |