ClientTunnel.h 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //ClientTunnel.h
  2. ///////////////////////////////////////////////////////////////////////////////
  3. #ifndef _CLIENT_TUNNEL_H_
  4. #define _CLIENT_TUNNEL_H_
  5. #include "IClientImpl.h"
  6. #include "Client2SrvType.h"
  7. class CClientTunnel
  8. {
  9. public:
  10. CClientTunnel();
  11. virtual ~CClientTunnel();
  12. public:
  13. static TransportStatus Transport_Init();
  14. static TransportStatus Transport_UnInit();
  15. int net_OpenSocket(
  16. IN CONST ETransportType eType,
  17. IN CONST unsigned short usPort,
  18. IN LPTRANSPORT_EVENT eventHandler,
  19. void *pContext);
  20. void net_CloseSocket();
  21. int net_Connect(IN CONST unsigned long ulIPValue, IN CONST unsigned short usPort);
  22. int net_Connect(IN LPCTSTR strAddr, LPCTSTR strPort);
  23. unsigned long net_Send(
  24. IN void *pHeader,
  25. IN void *pMessage,
  26. IN CONST unsigned long ulDataLen);
  27. public:
  28. LPTRANSPORT_EVENT m_eventHandler;
  29. void *m_pContext;
  30. private:
  31. INT m_nIndex;
  32. IClientImpl m_Client;
  33. };
  34. #endif /*_CLIENT_TUNNEL_H_*/