netMain.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //netMain.h
  2. /////////////////////////////////////////////////////////////////////////////
  3. #ifndef _NET_MAIN_H_
  4. #define _NET_MAIN_H_
  5. /////////////////////////////////////////////////////////////////////////////
  6. /*/////////////////////////////////////////////////////////////////////////*/
  7. #if defined(__cplusplus)
  8. extern "C" {
  9. #endif
  10. /*/////////////////////////////////////////////////////////////////////////*/
  11. #include "data_def.h"
  12. /////////////////////////////////////////////////////////////////////////////
  13. #define MAX_HOSTNAME_LEN (256)
  14. #define MAX_IPADDRESS_LEN (16)
  15. /////////////////////////////////////////////////////////////////////////////
  16. class CTransport;
  17. class CTransportImpl
  18. {
  19. public:
  20. CTransportImpl();
  21. virtual ~CTransportImpl();
  22. int net_Init();
  23. int net_UnInit();
  24. virtual SOCKET net_OpenSocket(IN ETransportType eType,
  25. IN unsigned short usPort,
  26. IN LPTRANSPORT_EVENT eventHandler,
  27. IN LPTRANSPORT_GETDATABUFLEN cbHandler,
  28. IN unsigned long ulHeaderLen,
  29. void *pContext);
  30. virtual void net_CloseSocket();
  31. virtual int net_Connect(IN unsigned long ulIPValue, IN unsigned short usPort);
  32. virtual unsigned long net_Send(IN SOCKET hSocket,
  33. IN void *pMessage,
  34. IN unsigned long ulDataLen);
  35. public:
  36. virtual unsigned long net_GetLocalHostIp(OUT char *pIpAddress, OUT char *pHostName);
  37. private:
  38. CTransport *m_ptTransport;
  39. };
  40. /*/////////////////////////////////////////////////////////////////////////*/
  41. #if defined(__cplusplus)
  42. }
  43. #endif
  44. /*/////////////////////////////////////////////////////////////////////////*/
  45. #endif /*_NET_MAIN_H_*/