• 大小: 271KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: C/C++
  • 标签: MFC  CSocket  网络编程  

资源简介

https://blog.csdn.net/qq_29542611/article/details/86371353 MFC:Socket编程—TCP服务端和多个客户端通信 示例代码

资源截图

代码片段和文件信息


// 02_TCPClient.cpp : 定义应用程序的类行为。
//

#include “stdafx.h“
#include “02_TCPClient.h“
#include “02_TCPClientDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMy02_TCPClientApp

BEGIN_MESSAGE_MAP(CMy02_TCPClientApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// CMy02_TCPClientApp 构造

CMy02_TCPClientApp::CMy02_TCPClientApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;

// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}


// 唯一的一个 CMy02_TCPClientApp 对象

CMy02_TCPClientApp theApp;


// CMy02_TCPClientApp 初始化

BOOL CMy02_TCPClientApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。  否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::InitInstance();

if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}


AfxEnableControlContainer();

// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;

// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));

// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));

CMy02_TCPClientDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
//  “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
//  “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg 0 “警告: 对话框创建失败,应用程序将意外终止。\n“);
TRACE(traceAppMsg 0 “警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n“);
}

// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}

// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
//  而不是启动应用程序的消息泵。
return FALSE;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    ..A..H.     45056  2019-01-12 20:50  02_TCPServer\.vs\02_TCPServer\v14\.suo

     文件      91364  2019-01-12 15:53  02_TCPServer\02_TCPServer\02_TCPServer.aps

     文件       2562  2019-01-08 22:16  02_TCPServer\02_TCPServer\02_TCPServer.cpp

     文件        487  2019-01-09 22:00  02_TCPServer\02_TCPServer\02_TCPServer.h

     文件      10534  2019-01-08 22:32  02_TCPServer\02_TCPServer\02_TCPServer.rc

     文件      11210  2019-01-08 23:11  02_TCPServer\02_TCPServer\02_TCPServer.vcxproj

     文件       2468  2019-01-08 22:56  02_TCPServer\02_TCPServer\02_TCPServer.vcxproj.filters

     文件       3422  2019-01-12 18:26  02_TCPServer\02_TCPServer\02_TCPServerDlg.cpp

     文件        974  2019-01-12 16:24  02_TCPServer\02_TCPServer\02_TCPServerDlg.h

     文件       1507  2019-01-12 20:42  02_TCPServer\02_TCPServer\ConnSocket.cpp

     文件        471  2019-01-12 20:21  02_TCPServer\02_TCPServer\ConnSocket.h

     文件       4056  2019-01-08 22:16  02_TCPServer\02_TCPServer\ReadMe.txt

    .......     67777  2015-07-06 21:54  02_TCPServer\02_TCPServer\res\02_TCPServer.ico

     文件        684  2019-01-08 22:16  02_TCPServer\02_TCPServer\res\My02_TCPServer.rc2

     文件       1516  2019-01-08 22:34  02_TCPServer\02_TCPServer\resource.h

     文件       1336  2019-01-12 20:18  02_TCPServer\02_TCPServer\ServerSocket.cpp

     文件        519  2019-01-12 20:18  02_TCPServer\02_TCPServer\ServerSocket.h

     文件        145  2019-01-08 22:16  02_TCPServer\02_TCPServer\stdafx.cpp

     文件       1629  2019-01-08 22:16  02_TCPServer\02_TCPServer\stdafx.h

     文件        240  2019-01-08 22:16  02_TCPServer\02_TCPServer\targetver.h

     文件       1318  2019-01-08 22:16  02_TCPServer\02_TCPServer.sln

    ..A..H.     41472  2019-01-12 20:51  02_TCPClient\.vs\02_TCPClient\v14\.suo

     文件     108728  2019-01-09 22:21  02_TCPClient\02_TCPClient\02_TCPClient.aps

     文件       2562  2019-01-09 22:02  02_TCPClient\02_TCPClient\02_TCPClient.cpp

     文件        487  2019-01-09 22:02  02_TCPClient\02_TCPClient\02_TCPClient.h

     文件      11028  2019-01-09 22:21  02_TCPClient\02_TCPClient\02_TCPClient.rc

     文件      10879  2019-01-09 23:13  02_TCPClient\02_TCPClient\02_TCPClient.vcxproj

     文件       2278  2019-01-09 23:13  02_TCPClient\02_TCPClient\02_TCPClient.vcxproj.filters

     文件       4093  2019-01-12 20:41  02_TCPClient\02_TCPClient\02_TCPClientDlg.cpp

     文件       1150  2019-01-12 20:38  02_TCPClient\02_TCPClient\02_TCPClientDlg.h

............此处省略25个文件信息

评论

共有 条评论