tcpsocket.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- ////////////////////////////////////////////////////////////////////////////////
- //
- // FileName : TcpSocket.cpp
- // Version : 1.0
- // Creater : Linsuyi
- // Date : 2002-02-21 15:43:16
- // Comment : Tcp/ip tcp socket source file
- //
- ////////////////////////////////////////////////////////////////////////////////
- #include "Stdafx.h"
- #include "TcpSocket.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CTcpSocket::CTcpSocket()
- {
- m_nSckType = SOCK_STREAM;
- m_nSckProto = IPPROTO_TCP;
- }
- CTcpSocket::~CTcpSocket()
- {
- }
- int CTcpSocket::Create()
- {
- return CStmSocket::Create();
- }