资源简介
1)服务器端,分别用线程监听文件和数据,客户端一个连接线程;2)客户端加入登陆框限制,默认用户名maguiqin,密码nuaa;3)发送文件直接用ip框的ip,端口为7000,而数据聊天的端口可以设置4;)加上了Skinsharp皮肤,让vc6的程序看起来更美观;5)收发数据采用基本的socket函数,而非CSocket和CAsySocket,发送文件采用了一下CSocket。有待完善的地方,一是发文件时加上进度条显示,二是当前只能客户端往服务端发文件,因为可以多个客户端。以后完善
代码片段和文件信息
// Client.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“
#include “LoginDlg.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()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
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
SkinH_Attach();//加载皮肤
CLoginDlg logDlg;
if (logDlg.DoModal() == IDCANCEL)
{
exit(EXIT_FAILURE) ;
}
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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 37004 2011-08-18 10:37 xia\Client\Client.aps
文件 1981 2011-08-18 10:42 xia\Client\Client.clw
文件 2297 2011-08-18 10:39 xia\Client\Client.cpp
文件 4359 2011-08-18 10:40 xia\Client\Client.dsp
文件 1324 2011-08-17 20:11 xia\Client\Client.h
文件 246 2011-08-18 10:42 xia\Client\Client.plg
文件 6549 2011-08-18 10:37 xia\Client\Client.rc
文件 9136 2011-08-18 10:39 xia\Client\ClientDlg.cpp
文件 1524 2011-08-18 10:11 xia\Client\ClientDlg.h
文件 2241 2011-08-17 21:47 xia\Client\ClientFileThread.h
文件 1370 2011-08-18 10:41 xia\Client\LoginDlg.cpp
文件 1213 2011-08-18 10:38 xia\Client\LoginDlg.h
文件 3579 2011-08-17 20:11 xia\Client\ReadMe.txt
文件 1078 2011-08-17 20:11 xia\Client\res\Client.ico
文件 398 2011-08-17 20:11 xia\Client\res\Client.rc2
文件 1188 2011-08-18 10:37 xia\Client\resource.h
文件 86528 2009-09-15 10:29 xia\Client\SkinH.dll
文件 8836 2009-09-09 21:04 xia\Client\SkinH.h
文件 6842 2009-09-09 20:13 xia\Client\SkinH.lib
文件 20552 2009-09-09 20:54 xia\Client\skinh.she
文件 208 2011-08-17 20:11 xia\Client\StdAfx.cpp
文件 1154 2011-08-17 20:19 xia\Client\StdAfx.h
文件 440 2011-08-17 22:06 xia\Server\Inc.h
文件 3579 2011-08-17 20:10 xia\Server\ReadMe.txt
文件 1078 2011-08-17 20:10 xia\Server\res\Server.ico
文件 398 2011-08-17 20:10 xia\Server\res\Server.rc2
文件 959 2011-08-17 20:17 xia\Server\resource.h
文件 36264 2011-08-17 22:00 xia\Server\Server.aps
文件 1361 2011-08-18 10:42 xia\Server\Server.clw
文件 2157 2011-08-17 20:10 xia\Server\Server.cpp
............此处省略25个文件信息
相关资源
- c++11多线程编程
- 多线程编程之future库使用
- c++11原子库
- linux下c语言实现多线程web服务器
- MFC 多线程之间通过消息传递数据
- VC6.0 网络程序设计 UDP 文件传输 客户
- 基于多线程的Linux聊天室系统
- ftp的C++源码实现,可以进行文件传输
- window c语言编写的多线程的Socket局域网
- Linux c语言多线程实现生产者/消费者问
- MFC创建用户界面线程方法2
- linux局域网聊天软件server+client 源码
- TCP一对多通信_基于MFC多线程
- 生产者消费者算法图形化演示系统
- 多进程写文件仿真
- 多线程流式套接字C/S模式通信程序
- c语言多线程计算PI
- MFC基于多线程的聊天程序用了winsock套
- Linux下纯C语言 多线程 人机 贪吃蛇
- 基于mfc tcp 文件传输 源代码
- 基于C++ builder 的文件传输代码
- 简单多线程socket聊天室程序(c语言)
- QT C++ 多线程支持多串口通信
- 给予c++的多线程
- 局域网活动主机扫描程序
- 随机迷宫生成迷宫自动寻路软件VS20
- 基于SOCKET的文件传输服务端+客户端
- mfc实现多线程工程代码和线程进程查
- MFC中的多线程同步
- Pthread 多线程C++动态库+静态库+头文件
评论
共有 条评论