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

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 RTPDEFINES_H
  24. #define RTPDEFINES_H
  25. #include "rtpconfig.h"
  26. #ifdef WIN32
  27. #ifndef RTP_MULTICAST
  28. #include <winsock.h>
  29. #else
  30. #include <winsock2.h>
  31. #include <ws2tcpip.h>
  32. #endif // RTP_MULTICAST
  33. #define RTPCLOSESOCKET(s) closesocket(s)
  34. #define RTPIOCTL(a,b,c) ioctlsocket(a,b,c)
  35. #define RTPSOCKET SOCKET // socket type
  36. #define RTPSOCKERR INVALID_SOCKET
  37. #define RTPSOCKLENTYPE int
  38. #else  // UNIX type sockets
  39. #include <stdlib.h>
  40. #include <sys/types.h>
  41. #include <sys/socket.h>
  42. #include <sys/ioctl.h>
  43. #include <netinet/in.h>
  44. #include <arpa/inet.h>
  45. #include <unistd.h>
  46. #include <netdb.h>
  47. #ifndef RTP_VXWORKS
  48. #include <sys/time.h>
  49. #endif // RTP_VXWORKS
  50. #define RTPCLOSESOCKET(s)  close(s)
  51. #define RTPIOCTL(a,b,c)  ioctl(a,b,c)
  52. #define RTPSOCKET int // socket type
  53. #define RTPSOCKERR -1
  54. #ifdef RTP_SOCKLENTYPE_UINT
  55. #define RTPSOCKLENTYPE unsigned int
  56. #else
  57. #define RTPSOCKLENTYPE int
  58. #endif // RTP_SOCKLENTYPE_UINT
  59. #endif // WIN32
  60. #define RTP_NUM_EXCEPTIONS 9
  61. #define RTP_EXCEPTION_LOCALSSRCCOLLISION 0
  62. #define RTP_EXCEPTION_SSRCCOLLISION 1
  63. #define RTP_EXCEPTION_RECEIVERTCPAPPDATA 2
  64. #define RTP_EXCEPTION_NEWSOURCE 3
  65. #define RTP_EXCEPTION_INVALIDSDESTYPE 4
  66. #define RTP_EXCEPTION_SSRCDEPARTURE 5
  67. #define RTP_EXCEPTION_SSRCTIMEOUT 6
  68. #define RTP_EXCEPTION_TRANSMITRTCPAPPDATA 7
  69. #define RTP_EXCEPTION_RTCPPACKET 8
  70. #define RTP_VERSION 2
  71. #define RTP_NUM_SDES_INDICES 8
  72. #define RTP_MINIMUMPACKETSIZE 300
  73. #define RTP_MAXIMUMPACKETSIZE 65535
  74. #define RTP_MINIMUM_RTCP_DELAY 5
  75. #define RTP_TIMEOUTSEC 1800 // 30 minutes
  76. #define RTP_SDESINFO_INTERVAL 10 // 10 packet interval
  77. #define RTP_NTPTIMEOFFSET 2208992400UL
  78. #define RTP_DEFAULT_MAXPACKSIZE 1100
  79. #define RTP_DEFAULT_SESSIONBANDWIDTH 64000.0
  80. #define RTP_DEFAULT_RTCPFRAGMENT 0.05
  81. #define RTP_DEFAULT_TIMESTAMPUNIT (1.0/8000.0)
  82. #define RTP_SENDBUFFERSIZE 32738
  83. #define RTP_RECEIVEBUFFERSIZE 32738
  84. #define RTP_DEFAULTMULTICAST_TTL 1
  85. #define IP_UDP_HEADERSIZE (20+8)
  86. #endif // RTPDEFINES_H