UdpSocket.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //  
  3. //  FileName    :   UdpSocket.cpp
  4. //  Version     :   1.0
  5. //  Creater     :   Linsuyi
  6. //  Date        :   2002-01-16  20:13:26
  7. //  Comment     :   Tcp/ip udp socket source file
  8. //  
  9. ////////////////////////////////////////////////////////////////////////////////
  10. #include "Stdafx.h"
  11. #include "UdpSocket.h"
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CUdpSocket::CUdpSocket()
  16. {
  17.     m_nSckType = SOCK_DGRAM;
  18.     m_nSckProto = IPPROTO_UDP;
  19. }
  20. CUdpSocket::~CUdpSocket()
  21. {
  22. }
  23. int CUdpSocket::Create()
  24. {
  25.     return CDgmSocket::Create();
  26. }