rtpmcasttable.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 RTPMCASTTABLE_H
  24. #define RTPMCASTTABLE_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include <stdlib.h>
  29. #define RTP_MCASTTABLE_HASHSIZE  1024
  30. class RTPMCastTableEntry
  31. {
  32. public:
  33. RTPMCastTableEntry(unsigned long mcastIP) { ip = mcastIP; next = NULL; }
  34. unsigned long GetMCastIP() { return ip; }
  35. private:
  36. unsigned long ip;
  37. public:
  38. RTPMCastTableEntry *next;
  39. };
  40. class RTPMCastTable RTPDEBUGBASE
  41. {
  42. public:
  43. RTPMCastTable();
  44. ~RTPMCastTable();
  45. int AddMCastAddress(unsigned long mcastIP);
  46. int DeleteMCastAddress(unsigned long mcastIP);
  47. void GotoFirstMCastAddress();
  48. bool GetNextMCastAddress(unsigned long *mcastIP);
  49. void Clear();
  50. private:
  51. RTPMCastTableEntry *hashtable[RTP_MCASTTABLE_HASHSIZE];
  52. RTPMCastTableEntry *curentry;
  53. int curpos;
  54. };
  55. #endif // RTPMCASTTABLE_H