资源简介
用socket实现C/S架构的小程序,包括TCP服务和UDP服务,TCP服务是计算数学表达式,UDP服务是返回反序字符串.内有说明文档
代码片段和文件信息
// Client.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClientApp
BEGIN_MESSAGE_MAP(CClientApp CWinApp)
//{{AFX_MSG_MAP(CClientApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CClientApp construction
CClientApp::CClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CClientApp object
CClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CClientApp initialization
BOOL CClientApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
AfxInitRichEdit();
CClientDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 36624 2009-11-30 17:32 Client\Client.aps
文件 2062 2009-12-03 21:49 Client\Client.clw
文件 2084 2009-11-27 16:29 Client\Client.cpp
文件 4159 2009-11-27 16:24 Client\Client.dsp
文件 535 2009-11-27 16:29 Client\Client.dsw
文件 1324 2009-11-27 16:24 Client\Client.h
文件 58368 2009-12-03 21:49 Client\Client.ncb
文件 53760 2009-12-03 21:49 Client\Client.opt
文件 918 2009-12-03 21:44 Client\Client.plg
文件 6841 2009-11-30 17:32 Client\Client.rc
文件 10549 2009-12-03 21:43 Client\ClientDlg.cpp
文件 1802 2009-12-02 20:38 Client\ClientDlg.h
文件 114731 2009-12-03 21:44 Client\Debug\Client.exe
文件 241576 2009-12-03 21:44 Client\Debug\Client.ilk
文件 15589 2009-12-02 22:13 Client\Debug\Client.obj
文件 5637936 2009-12-02 22:13 Client\Debug\Client.pch
文件 386048 2009-12-03 21:44 Client\Debug\Client.pdb
文件 3388 2009-12-02 22:13 Client\Debug\Client.res
文件 51146 2009-12-03 21:44 Client\Debug\ClientDlg.obj
文件 110733 2009-12-02 22:13 Client\Debug\StdAfx.obj
文件 214016 2009-12-03 21:48 Client\Debug\vc60.idb
文件 372736 2009-12-03 21:44 Client\Debug\vc60.pdb
文件 3579 2009-11-27 16:24 Client\ReadMe.txt
文件 1078 2009-11-27 16:24 Client\res\Client.ico
文件 398 2009-11-27 16:24 Client\res\Client.rc2
文件 1236 2009-11-30 16:53 Client\resource.h
文件 204 2009-11-30 10:59 Client\StdAfx.cpp
文件 1316 2009-12-01 11:15 Client\StdAfx.h
文件 122923 2009-12-03 21:47 Server\Debug\Server.exe
文件 242388 2009-12-03 21:47 Server\Debug\Server.ilk
............此处省略36个文件信息
- 上一篇:walksatC语言
- 下一篇:gmfc 泡沫切割软件汉化
相关资源
- 网络五子棋全功能版
- 基于C++MFC的聊天程序,C/S模式
- C语言实现TCP连接
- c++(socket)音频传输
- VS2017实现Tcp socket多线程通信C++
- C++11编写的socket通信程序
- vs2012 mfc程序用Socket实现两台计算机间
- MFC仿QQ局域网聊天软件
- mfc socket编程实现聊天与文件传输vs2
- MFC socket编程 简易聊天工具及文件
- 基于qt的聊天室
- VC++远程桌面监控系统
- VC6.0实现socket、tcp传输,支持各类文件
- 仿QQ聊天系统
- 用C语言实现Socket模拟TCP协议
- MFC 套接字Socket文件传输
- Windows环境下socket编程C语言编写
- C++实现简单Socket编程,多客户端登陆
- 基于VC++ Socket 网络调试助手源码
- dll 封装 socket tcp/ip 简单易懂。
- MFC+CSocket聊天室程序
- MFC SOCKET TCP VC6.0 服务器 客户端 源码编
- Visual C++网络高级编程pdf+源代码
- c++ Windows Socket实现最简单的C/S网络通
- c++语言opencv加socket实现远程桌面监控
- tcp ip sockets编程 c语言实现 第2版 中文
- TCPSocket摄像头实时传输视频和图片传
- websocket客户端
- MFC socket与websocket通信
- 用C++/MFC实现P2P和群聊功能的聊天小软
评论
共有 条评论