ClientTunnel.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //ClientTunnel.h
  2. ///////////////////////////////////////////////////////////////////////////////
  3. #ifndef _CLIENT_TUNNEL_H_
  4. #define _CLIENT_TUNNEL_H_
  5. /*/////////////////////////////////////////////////////////////////////////* /
  6. #if defined(__cplusplus)
  7. extern "C" {
  8. #endif
  9. /*/////////////////////////////////////////////////////////////////////////*/
  10. #include "./include/netMain.h"
  11. #include "./include/protocolhdr.h"
  12. #include "./include/struct_def.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. class CClientTunnel : public CTransportImpl
  15. {
  16. public:
  17. CClientTunnel();
  18. virtual ~CClientTunnel();
  19. public:
  20. int net_OpenSocket(
  21. IN ETransportType eType,
  22. IN unsigned short usPort,
  23. IN LPTRANSPORT_EVENT eventHandler,
  24. void *pContext);
  25. void net_CloseSocket();
  26. int net_Connect(IN unsigned long ulIPValue, IN unsigned short usPort);
  27. unsigned long net_Send(
  28. IN void *pHeader,
  29. IN void *pMessage,
  30. IN unsigned long ulDataLen);
  31. public:
  32. LPTRANSPORT_EVENT m_eventHandler;
  33. void *m_pContext;
  34. private:
  35. SOCKET m_hSocket;
  36. };
  37. /*/////////////////////////////////////////////////////////////////////////* /
  38. #if defined(__cplusplus)
  39. }
  40. #endif
  41. /*/////////////////////////////////////////////////////////////////////////*/
  42. #endif /*_CLIENT_TUNNEL_H_*/