ChatLsnSock.cpp
资源名称:(vc).rar [点击查看]
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:1k
源码类别:
Telnet服务器
开发平台:
Visual C++
- // ChatLsnSock.cpp : implementation file
- //
- #include "stdafx.h"
- #include "AnyServer.h"
- #include "ChatLsnSock.h"
- #include "ChatSock.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CChatLsnSock
- #include "AnyServerDoc.h"
- CChatLsnSock::CChatLsnSock()
- {
- }
- CChatLsnSock::~CChatLsnSock()
- {
- }
- // Do not edit the following lines, which are needed by ClassWizard.
- #if 0
- BEGIN_MESSAGE_MAP(CChatLsnSock, CAsyncSocket)
- //{{AFX_MSG_MAP(CChatLsnSock)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- #endif // 0
- /////////////////////////////////////////////////////////////////////////////
- // CChatLsnSock member functions
- BOOL bChat=FALSE;
- void CChatLsnSock::OnAccept(int nErrorCode)
- {
- // TODO: Add your specialized code here and/or call the base class
- if (!bChat)
- {
- bChat=TRUE;
- m_pDoc->ProcessPendingAccept();
- }
- CAsyncSocket::OnAccept(nErrorCode);
- }
- CChatLsnSock::CChatLsnSock(CAnyServerDoc* pDoc)
- {
- m_pDoc=pDoc;
- }