diff options
author | phintuka <phintuka> | 2006-12-14 14:43:46 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-12-14 14:43:46 +0000 |
commit | 6996393e1ad30dbb0b473eadc9438e7e06e23192 (patch) | |
tree | fa10f09e9cc389fc3e3b57f2f6694298578daf56 | |
parent | 2c7768b852e5d3d6ca4e2e4a94fced7f5e619a73 (diff) | |
download | xineliboutput-6996393e1ad30dbb0b473eadc9438e7e06e23192.tar.gz xineliboutput-6996393e1ad30dbb0b473eadc9438e7e06e23192.tar.bz2 |
RTP sockets moved to udp scheduler
-rw-r--r-- | frontend_svr.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend_svr.h b/frontend_svr.h index fa6c12b9..75c912d1 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.9 2006-10-18 12:50:12 phintuka Exp $ + * $Id: frontend_svr.h,v 1.10 2006-12-14 14:43:46 phintuka Exp $ * */ @@ -93,8 +93,6 @@ protected: int m_Port; int fd_listen; - int fd_multicast; - int fd_rtcp; int fd_discovery; int fd_control[MAXCLIENTS]; int fd_data[MAXCLIENTS]; @@ -103,6 +101,7 @@ protected: int m_CtrlBufPos[MAXCLIENTS]; bool m_bUdp[MAXCLIENTS]; + bool m_bRtcp[MAXCLIENTS]; bool m_bMulticast[MAXCLIENTS]; bool m_bConfigOk[MAXCLIENTS]; int m_iMulticastMask; // bit [cli] is 1 or 0. 1 == multicast in use. |