rtpconnection.h
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:5k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.   This file is a part of JRTPLIB
  3.   Copyright (c) 1999-2000 Jori Liesenborgs
  4.   Contact: jori@lumumba.luc.ac.be
  5.   This library (JRTPLIB) was partially developed for my thesis at the
  6.   School for Knowledge Technology (Belgium/The Netherlands)
  7.   Permission is hereby granted, free of charge, to any person obtaining a
  8.   copy of this software and associated documentation files (the "Software"),
  9.   to deal in the Software without restriction, including without limitation
  10.   the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.   and/or sell copies of the Software, and to permit persons to whom the
  12.   Software is furnished to do so, subject to the following conditions:
  13.   The above copyright notice and this permission notice shall be included
  14.   in all copies or substantial portions of the Software.
  15.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16.   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17.   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  18.   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19.   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20.   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21.   IN THE SOFTWARE.
  22. */
  23. #ifndef RTPCONNECTION_H
  24. #define RTPCONNECTION_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include "rtpstructs.h"
  29. #include "rtpdestlist.h"
  30. #include "rtpiptable.h"
  31. #include "rtperror.h"
  32. #include "rtpmcasttable.h"
  33. #define RECEIVEMODE_ALL 0
  34. #define RECEIVEMODE_IGNORESOME 1
  35. #define RECEIVEMODE_ACCEPTSOME 2
  36. class RTPContributingSources;
  37. struct RawDataBlock;
  38. class RTPConnection RTPDEBUGBASE
  39. {
  40. public:
  41. RTPConnection();
  42. ~RTPConnection();
  43. int Create(int pbase,unsigned long localip);
  44. void Destroy();
  45. int GetPortBase();
  46. void SetMaximumPacketSize(int size) { maxpacksize = size; }
  47. int SetToS(int tos);
  48. int AddDestination(unsigned long ip,int portbase) { return destinations.Add(ip,portbase); }
  49. int DeleteDestination(unsigned long ip,int portbase) { return destinations.Delete(ip,portbase); }
  50. void ClearDestinations() { destinations.Clear(); }
  51. bool SupportsMulticasting();
  52. int JoinMulticastGroup(unsigned long mcastIP);
  53. int LeaveMulticastGroup(unsigned long mcastIP);
  54. void LeaveAllMulticastGroups();
  55. int SetMulticastTTL(unsigned char ttl);
  56. int SendRTPData(void *data,int len,RTPContributingSources *srcs,unsigned char pt,bool mark,RTPuint16 seqnr,RTPuint32 timestamp);
  57. int SendRTPData(void *data,int len,RTPContributingSources *srcs,unsigned char pt,bool mark,RTPuint16 seqnr,RTPuint32 timestamp,unsigned short hdrextID,void *hdrextdata,int numhdrextwords);
  58. int SendRTCPCompoundData(void *data,int len);
  59. int PollRTP() { return Poll(true); }
  60. int PollRTCP() { return Poll(false); }
  61. bool RTPDataAvailable() { if (rtp_first == NULL) return false; return true; }
  62. bool RTCPDataAvailable() { if (rtcp_first == NULL) return false; return true; }
  63. int ReceiveRTPData(unsigned char **data,int *len,unsigned long *ip,int *port);
  64. int ReceiveRTCPData(unsigned char **data,int *len,unsigned long *ip,int *port);
  65. struct timeval GetRTCPReceiveTime() { return rtcprecvtime; }
  66. int SetReceiveMode(int mode) { if (mode < 0 || mode > 2) return ERR_RTP_INVALIDRECEIVEMODE; receivemode = mode; return 0; }
  67.                                                                         
  68. int AddToIgnoreList(unsigned long ip,bool allports,int portbase) { return ignoreIPs.Add(ip,allports,portbase); }
  69. int DeleteFromIgnoreList(unsigned long ip,bool allports,int portbase) { return ignoreIPs.Delete(ip,allports,portbase); }
  70. void ClearIgnoreList() { ignoreIPs.Clear(); }
  71. int AddToAcceptList(unsigned long ip,bool allports,int portbase) { return acceptIPs.Add(ip,allports,portbase); }
  72. int DeleteFromAcceptList(unsigned long ip,bool allports,int portbase) { return acceptIPs.Delete(ip,allports,portbase); }
  73. void ClearAcceptList() { acceptIPs.Clear(); }
  74. int GetSendPort() { return sendport; }
  75. unsigned long GetLocalIP() { return localip; }
  76. RTPSOCKET GetRTPSocket() { return rtpsock; }
  77. RTPSOCKET GetRTCPSocket() { return rtcpsock; }
  78. RTPSOCKET GetSendSocket() { return sendsock; }
  79. private:
  80. int Poll(bool rtp);
  81. void FlushPackets();
  82. unsigned long CalcLocalIP();
  83. RTPSOCKET rtpsock,rtcpsock,sendsock;
  84. bool socketsopened;
  85. int portbase,sendport;
  86. unsigned long localip;
  87. RTPDestList destinations;
  88. int receivemode;
  89. RTPIPTable ignoreIPs,acceptIPs;
  90. RTPMCastTable mcasttable;
  91. struct timeval rtcprecvtime;
  92. int maxpacksize;
  93. RawDataBlock *rtp_first,*rtp_last;
  94. RawDataBlock *rtcp_first,*rtcp_last;
  95. unsigned char packetbuffer[RTP_MAXIMUMPACKETSIZE];
  96. };
  97. #endif // RTPCONNECTION_H