rtperror.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 RTPERROR_H
  24. #define RTPERROR_H
  25. #include "rtpconfig.h"
  26. #define ERR_RTP_OUTOFMEM -1
  27. #define ERR_RTP_CONNALREADYCREATED -2
  28. #define ERR_RTP_PORTBASENOTEVEN -3
  29. #define ERR_RTP_CANTCREATESOCKET -4
  30. #define ERR_RTP_CANTBINDSOCKET -5
  31. #define ERR_RTP_INVALIDRECEIVEMODE -6
  32. #define ERR_RTP_ILLEGALPORT -7
  33. #define ERR_RTP_IPTABLEENTRYEXISTS -8
  34. #define ERR_RTP_IPTABLEENTRYDOESNTEXIST -9
  35. #define ERR_RTP_ENTRYNOTINDESTLIST -10
  36. #define ERR_RTP_PACKETTOOLARGE -11
  37. #define ERR_RTP_SOCKETSNOTOPEN -12
  38. #define ERR_RTP_MAXPACKSIZETOOSMALL -13
  39. #define ERR_RTP_NORTPDATAAVAILABLE -14
  40. #define ERR_RTP_NORTCPDATAAVAILABLE -15
  41. #define ERR_RTP_SSRCNOTFOUND -16
  42. #define ERR_RTP_SDESINDEXOUTOFRANGE -17
  43. #define ERR_RTP_CSRCNOTINLIST -18
  44. #define ERR_RTP_ARGUMENTCANTBENULL -19
  45. #define ERR_RTP_PACKETPROCESSORNOTINITIALIZED -20
  46. #define ERR_RTP_PACKETISNOTFORTHISSOURCE -21
  47. #define ERR_RTP_SOURCESNOTINITALIZED -22
  48. #define ERR_RTP_COLLISIONBETWEENSSRCS -23
  49. #define ERR_RTP_RTCPMODULENOTINITIALIZED -24
  50. #define ERR_RTP_SESSIONNOTCREATED -25
  51. #define ERR_RTP_SESSIONALREADYINITIALIZED -26
  52. #define ERR_RTP_NODEFAULTVALUESSET -27
  53. #define ERR_RTP_CONTRIBSOURCESNOTINIT -28
  54. #define ERR_RTP_CANTSETSOCKETBUFFER -29
  55. #define ERR_RTP_NODEFAULTINCREMENTSET -30
  56. #define ERR_RTP_MAXPACKSIZETOOBIG -31
  57. #define ERR_RTP_CANTGETSOCKETPORT -32
  58. #define ERR_RTP_CANTGETLOCALIP -33
  59. #define ERR_RTP_MULTICASTINGNOTSUPPORTED -34
  60. #define ERR_RTP_CANTSETMULTICASTTTL -35
  61. #define ERR_RTP_NOTAMULTICASTADDRESS -36
  62. #define ERR_RTP_ALREADYINMCASTGROUP -37
  63. #define ERR_RTP_NOTINMCASTGROUP -38
  64. #define ERR_RTP_MULTICASTJOINFAILED -39
  65. #define ERR_RTP_SUBTYPETOOLARGE -40
  66. #define ERR_RTP_CANTSETTOS -41
  67. char *RTPGetErrorString(int rtperrnr);
  68. #endif // RTPERROR_H