• 大小: 4.23MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-19
  • 语言: 其他
  • 标签: WINSOCK  

资源简介

网络技术与开发中利用Winsock编写的TCP聊天程序。

资源截图

代码片段和文件信息

// CSocketcli.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “CSocketcli.h“
#include “CSocketcliDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCSocketcliApp

BEGIN_MESSAGE_MAP(CCSocketcliApp CWinApp)
//{{AFX_MSG_MAP(CCSocketcliApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CCSocketcliApp construction

CCSocketcliApp::CCSocketcliApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCSocketcliApp object

CCSocketcliApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCSocketcliApp initialization

BOOL CCSocketcliApp::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

CCSocketcliDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-06-18 14:08  4.1  TCP实现聊天\
     目录           0  2012-06-18 14:14  4.1  TCP实现聊天\TCP聊天客户端\
     文件       36748  2002-09-18 03:04  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.aps
     文件        1407  2002-09-23 17:28  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.clw
     文件        2213  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.cpp
     文件        4275  2002-09-18 03:04  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.dsp
     文件         543  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.dsw
     文件        1368  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.h
     文件       91136  2005-08-10 12:23  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.ncb
     文件       64000  2012-06-18 14:14  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.opt
     文件        1830  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.plg
     文件        6252  2002-09-18 03:04  4.1  TCP实现聊天\TCP聊天客户端\CSocketcli.rc
     文件        7318  2002-09-19 00:48  4.1  TCP实现聊天\TCP聊天客户端\CSocketcliDlg.cpp
     文件        1664  2001-03-08 16:43  4.1  TCP实现聊天\TCP聊天客户端\CSocketcliDlg.h
     目录           0  2012-06-18 14:08  4.1  TCP实现聊天\TCP聊天客户端\Debug\
     文件       49152  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\CSocketcli.exe
     文件      215296  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\CSocketcli.ilk
     文件       13364  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\CSocketcli.obj
     文件     5563308  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\CSocketcli.pch
     文件        3032  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\CSocketcli.res
     文件       41307  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\CSocketcliDlg.obj
     文件      106984  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\StdAfx.obj
     文件      214016  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\vc60.idb
     文件      364544  2005-08-10 12:22  4.1  TCP实现聊天\TCP聊天客户端\Debug\vc60.pdb
     文件        3651  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\ReadMe.txt
     文件         212  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\StdAfx.cpp
     文件        1102  2002-09-23 17:24  4.1  TCP实现聊天\TCP聊天客户端\StdAfx.h
     目录           0  2012-06-18 14:08  4.1  TCP实现聊天\TCP聊天客户端\res\
     文件        1078  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\res\CSocketcli.ico
     文件         402  2001-03-07 22:56  4.1  TCP实现聊天\TCP聊天客户端\res\CSocketcli.rc2
     文件         963  2001-03-08 16:44  4.1  TCP实现聊天\TCP聊天客户端\resource.h
............此处省略30个文件信息

评论

共有 条评论