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

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 RTPEXCEPTIONSTRUCTS_H
  24. #define RTPEXCEPTIONSTRUCTS_H
  25. #include "rtpconfig.h"
  26. struct RTPExcepSSRCCollision
  27. {
  28. unsigned long ssrc;
  29. unsigned long ip;
  30. bool rtpdata;
  31. int port;
  32. };
  33. struct RTPExcepSSRC
  34. {
  35. unsigned long ssrc;
  36. };
  37. struct RTPExcepAppData
  38. {
  39. unsigned char subtype;
  40. unsigned long src;
  41. unsigned char name[4];
  42. unsigned char *data;
  43. int numwords;
  44. bool validdata;
  45. int prevreturnval;
  46. };
  47. struct RTPExcepInvalSDESType
  48. {
  49. unsigned long ssrc;
  50. int sdestype;
  51. unsigned char *sdesdata;
  52. int datalen;
  53. };
  54. struct RTPExcepRTCPPacket
  55. {
  56. unsigned char *packet;
  57. int packetlen;
  58. unsigned long sourceip;
  59. int sourceport;
  60. };
  61. #endif // RTPEXCEPTIONSTRUCTS_H