rtphandlers.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 RTPHANDLERS_H
  24. #define RTPHANDLERS_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include <stdlib.h>
  28. typedef void (*RTPExceptionHandler)(int exceptiontype,void *exceptiondata,void *usrdata);
  29. class RTPHandlerInfo
  30. {
  31. public:
  32. RTPHandlerInfo() { handler = NULL; usrdata = NULL; }
  33. ~RTPHandlerInfo() { }
  34. RTPExceptionHandler handler;
  35. void *usrdata;
  36. };
  37. class RTPHandlers
  38. {
  39. public:
  40. RTPHandlers() { }
  41. ~RTPHandlers() { }
  42. void SetLocalSSRCCollisionHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_LOCALSSRCCOLLISION,handler,usrdata); }
  43. void SetSSRCCollisionHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_SSRCCOLLISION,handler,usrdata); }
  44. void SetNewSourceHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_NEWSOURCE,handler,usrdata); }
  45. void SetInvalidSDESTypeHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_INVALIDSDESTYPE,handler,usrdata); }
  46. void SetSSRCDepartureHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_SSRCDEPARTURE,handler,usrdata); }
  47. void SetSSRCTimeoutHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_SSRCTIMEOUT,handler,usrdata); }
  48. void SetReceiveRTCPAPPHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_RECEIVERTCPAPPDATA,handler,usrdata); }
  49. void SetTransmitRTCPAPPHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_TRANSMITRTCPAPPDATA,handler,usrdata); }
  50. void SetRTCPPacketHandler(RTPExceptionHandler handler,void *usrdata) { SetHandler(RTP_EXCEPTION_RTCPPACKET,handler,usrdata); }
  51. void Clear();
  52. private:
  53. inline void SetHandler(int index,RTPExceptionHandler handler,void *usrdata);
  54. RTPHandlerInfo handlers[RTP_NUM_EXCEPTIONS];
  55. friend class RTPSources;
  56. friend class RTPPacketProcessor;
  57. friend class RTPRTCPModule;
  58. };
  59. inline void RTPHandlers::SetHandler(int index,RTPExceptionHandler handler,void *usrdata)
  60. {
  61. handlers[index].handler = handler;
  62. handlers[index].usrdata = usrdata;
  63. }
  64. #endif // RTPHANDLERS_H