listens.cpp

来自「一个完备的组态软件源代码」· C++ 代码 · 共 62 行

CPP
62
字号
/////////////////////////////////////////////////////////////////////////////
//	Author				:	Bala Murali
//	ListenS.cpp			:	implementation file
//	Creation Date		:	03/09/2000
//	Version				:	Initial Release
/////////////////////////////////////////////////////////////////////////////



#include "stdafx.h"
#include "XSockServer.h"
#include "ListenS.h"
#include "XSockServerCtl.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

extern CXSockServerCtrl* m_pControl;

/////////////////////////////////////////////////////////////////////////////
// CListenS

CListenS::CListenS()
{
}

CListenS::~CListenS()
{
}


// Do not edit the following lines, which are needed by ClassWizard.
#if 0
BEGIN_MESSAGE_MAP(CListenS, CAsyncSocket)
	//{{AFX_MSG_MAP(CListenS)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()
#endif	// 0

/////////////////////////////////////////////////////////////////////////////
// CListenS member functions

void CListenS::OnAccept(int nErrorCode) 
{
	if ( !nErrorCode )
	{
		m_ConnectS = new CConnectS();
		m_pControl->m_list.AddHead(m_ConnectS);
		
		if ( Accept( *m_ConnectS ) )
		{
			m_pControl->FireOnAccept(m_ConnectS->m_lChildId);
			return;
		}
	}

	m_pControl->SocketError(nErrorCode);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?