LocalPeerFinder.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #ifndef _LOCALPEERFINDER_H_
  20. #define _LOCALPEERFINDER_H_
  21. namespace NPLayer1 {
  22. class Communicator;
  23. class LocalPeerFinder {
  24. public:
  25. LocalPeerFinder(Communicator*);
  26. ~LocalPeerFinder();
  27. // 开始运行
  28. P2P_RETURN_TYPE Init();
  29. // 停止运行
  30. void Uninit();
  31. SOCKET GetSocket() { return m_Socket; }
  32. BOOL IsRunning() { return isRunning; }
  33. // 读取其他peer的广播
  34. P2P_RETURN_TYPE ReadBroadcast();
  35. // 广播自己的信息
  36. P2P_RETURN_TYPE SendBroadcast();
  37. private:
  38. // 向指定端口广播自己的信息
  39. P2P_RETURN_TYPE SendSelfInfo(unsigned short port);
  40. // 创建Socket, 依次尝试端口并监听
  41. P2P_RETURN_TYPE Binding();
  42. // 查找本机的内网地址
  43. DWORD DetectInnerAddr();
  44. private:
  45. // 封装要广播的信息
  46. struct LocalPeerInfo {
  47. char channel[MD5_LEN]; // 当前正在看的频道MD5编码
  48. PeerInfoWithAddr peerInfo; //节点信息
  49. float version; // 软件版本
  50. char checksum[MD5_LEN]; // 检验
  51. };
  52. SOCKET m_Socket; // 当前监听的Socket
  53. BOOL isRunning; // 是否正在运行
  54. Communicator* comm;
  55. };
  56. }
  57. #endif /* _LOCALPEERFINDER_H_ */