bool CReactorClientInfo::Close()
{
	//OUR_DEBUG((LM_ERROR, "[CReactorClientInfo::Close]Begin.\n"));
	if (NULL != m_pConnectClient)
	{
		//OUR_DEBUG((LM_ERROR, "[CReactorClientInfo::Close]End 2.\n"));
		SetConnectClient(NULL);
	}

	return true;
}
Example #2
0
bool CReactorClientInfo::Close()
{
    if (NULL != m_pConnectClient)
    {

        SetConnectClient(NULL);
    }

    m_blIsLocal = false;
    return true;
}