TCPConnWrapper.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. #pragma once
  20. namespace gaov {
  21. namespace chaos {
  22. #include <Winsock2.h>
  23. #include "NetParse.h"
  24. class TCPConn
  25. {
  26. public:
  27. bool InitNetwork();
  28. PSTREAM InitData(UINT maxlen);
  29. int Send(PSTREAM s); // -1 : sock error;  1 : success
  30. PSTREAM Recv(PSTREAM s, UINT length);
  31. void Close(){ 
  32. if(sock!=INVALID_SOCKET){
  33. closesocket(sock); 
  34. sock = INVALID_SOCKET;
  35. WSACleanup();
  36. }
  37. protected:
  38. TCPConn() : sock(INVALID_SOCKET), m_bNetworkInited(false){}
  39. virtual ~TCPConn(){ 
  40. Close();
  41. }
  42. protected:
  43. bool m_bNetworkInited;
  44. SOCKET sock;
  45. STREAM in;
  46. STREAM out;
  47. };
  48. class TCPClient : public TCPConn
  49. {
  50. public:
  51. TCPClient(){};
  52. TCPClient(SOCKET s) { sock = s; };
  53. ~TCPClient(){}
  54. int Connect(const char* sIP, USHORT port); // -2 : connection exists;  -1 : sock error
  55. // 0 : mem error;  1 : success
  56. bool SendEx(UINT8 msgType, UINT8 subMsgType, PBYTE data, UINT dataLen);
  57. bool SendEx2(UINT8 msgType, UINT8 subMsgType, PBYTE data1, UINT dataLen1, PBYTE data2, UINT dataLen2);
  58. bool RecvEx(UINT8& msgType, UINT8& subMsgType, PBYTE& data, UINT& dataLen, const bool bRecvData=true);
  59. bool RecvEx2(UINT8& msgType, UINT8& subMsgType, PBYTE& data1, UINT& dataLen1, PBYTE& data2, UINT& dataLen2, const bool bRecvData=true );
  60. private:
  61. };
  62. class TCPServer : public TCPConn
  63. {
  64. public:
  65. TCPServer(){};
  66. ~TCPServer(){}
  67. bool Listen(const char* sIP, USHORT port);
  68. SOCKET Accept();
  69. private:
  70. };
  71. };
  72. };