基于TCP的网络聊天室的设计

上传者: yuant_zhang | 上传时间: 2019-12-21 22:13:57 | 文件大小: 4.24MB | 文件类型: zip
<计算机网络实验> 基于TCP的网络聊天室的设计 -实验指导 一、实验目的 1.掌握通信规范的制定及实现。 2.练习较复杂的网络编程,能够把协议设计思想应用到现实应用中。 二、实验内容和要求 1.进一步熟悉VC++6编程环境; 2.利用VC++6进行较复杂的网络编程,完成网络聊天室的设计及编写; 三、实验(设计)仪器设备和材料 1.计算机及操作系统:PC机,Windows; 2.网络环境:可以访问互联网; 四、 TCP/IP程序设计基础 基于TCP/IP的通信基本上都是利用SOCKET套接字进行数据通讯,程序一般分为服务器端和用户端两部分。设计思路(VC6.0下): 第一部分 服务器端 一、创建服务器套接字(create)。 二、服务器套接字进行信息绑定(bind),并开始监听连接(listen)。 三、接受来自用户端的连接请求(accept)。 四、开始数据传输(send/receive)。 五、关闭套接字(closesocket)。 第二部分 客户端 一、创建客户套接字(create)。 二、与远程服务器进行连接(connect),如被接受则创建接收进程。 三、开始数据传输(send/receive)。 四、关闭套接字(closesocket)。 CSocket的编程步骤:(注意我们一定要在创建MFC程序第二步的时候选上Windows Socket选项,其中ServerSocket是服务器端用到的,ClientSocket是客户端用的。) (1)构造CSocket对象,如下例: CSocket ServerSocket; CSocket ClientSocket; (2)CSocket对象的Create函数用来创建Windows Socket,Create()函数会自行调用Bind()函数将此Socket绑定到指定的地址上面。如下例: ServerSocket.Create(823); //服务器端需要指定一个端口号,我们用823。 ClientSocket.Create(); //客户端不用指定端口号。 (3)现在已经创建完基本的Socket对象了,现在我们来启动它,对于服务器端,我们需要这个Socket不停的监听是否有来自于网络上的连接请求,如下例: ServerSocket.Listen(5);//参数5是表示我们的待处理Socket队列中最多能有几个Socket。 (4)对于客户端我们就要实行连接了,具体实现如下例: ClientSocket.Connect(CString SerAddress,Unsinged int SerPort);//其中SerAddress是服务器的IP地址,SerPort是端口号。 (5)服务器是怎么来接受这份连接的呢?它会进一步调用Accept(ReceiveSocket)来接收它,而此时服务器端还须建立一个新的CSocket对象,用它来和客户端进行交流。如下例: CSocket ReceiveSocket; ServerSocket.Accept(ReceiveSocket); (6)如果想在两个程序之间接收或发送信息,MFC也提供了相应的函数。如下例: ServerSocket.Receive(String,Buffer); //String是你要发送的字符串,Buffer是发送字符串的缓冲区大小。ServerSocket.Send(String,Butter);//String是你要接收的字符串,Buffer是接收字符串的缓冲区大小。

文件下载

资源详情

[{"title":"( 55 个子文件 4.24MB ) 基于TCP的网络聊天室的设计","children":[{"title":"计算机网络实验","children":[{"title":"LoginDlg.cpp <span style='color:#111;'> 1.81KB </span>","children":null,"spread":false},{"title":"MyChat.vcproj <span style='color:#111;'> 8.26KB </span>","children":null,"spread":false},{"title":"res","children":[{"title":"xptheme.bin <span style='color:#111;'> 653B </span>","children":null,"spread":false},{"title":"MyChat.rc2 <span style='color:#111;'> 398B </span>","children":null,"spread":false},{"title":"Thumbs.db <span style='color:#111;'> 3.00KB </span>","children":null,"spread":false},{"title":"MyChat.ico <span style='color:#111;'> 1.05KB </span>","children":null,"spread":false}],"spread":true},{"title":"LoginDlg.h <span style='color:#111;'> 1.30KB </span>","children":null,"spread":false},{"title":"MyChat.plg <span style='color:#111;'> 2.08KB </span>","children":null,"spread":false},{"title":"MyChat.suo <span style='color:#111;'> 12.50KB </span>","children":null,"spread":false},{"title":"ClientSocket.h <span style='color:#111;'> 1.27KB </span>","children":null,"spread":false},{"title":"ChatServer","children":[{"title":"ServerSocket.h <span style='color:#111;'> 1.19KB </span>","children":null,"spread":false},{"title":"ChatServer.aps <span style='color:#111;'> 37.94KB </span>","children":null,"spread":false},{"title":"res","children":[{"title":"ChatServer.ico <span style='color:#111;'> 1.05KB </span>","children":null,"spread":false},{"title":"xptheme.bin <span style='color:#111;'> 653B </span>","children":null,"spread":false},{"title":"ChatServer.rc2 <span style='color:#111;'> 402B </span>","children":null,"spread":false}],"spread":true},{"title":"ChatServer.dsp <span style='color:#111;'> 4.53KB </span>","children":null,"spread":false},{"title":"ChatServerDlg.cpp <span style='color:#111;'> 4.94KB </span>","children":null,"spread":false},{"title":"ChatServerDlg.h <span style='color:#111;'> 1.38KB </span>","children":null,"spread":false},{"title":"ChatServer.dsw <span style='color:#111;'> 543B </span>","children":null,"spread":false},{"title":"ChatServer.clw <span style='color:#111;'> 1.60KB </span>","children":null,"spread":false},{"title":"ClientSocket.h <span style='color:#111;'> 1.31KB </span>","children":null,"spread":false},{"title":"ChatServer.plg <span style='color:#111;'> 1.99KB </span>","children":null,"spread":false},{"title":"ChatServer.h <span style='color:#111;'> 1.34KB </span>","children":null,"spread":false},{"title":"ChatServer.cpp <span style='color:#111;'> 2.51KB </span>","children":null,"spread":false},{"title":"ChatServer.opt <span style='color:#111;'> 52.50KB </span>","children":null,"spread":false},{"title":"ChatServer.rc <span style='color:#111;'> 5.39KB </span>","children":null,"spread":false},{"title":"ChatServer.vcproj <span style='color:#111;'> 8.28KB </span>","children":null,"spread":false},{"title":"tagHeader.h <span style='color:#111;'> 123B </span>","children":null,"spread":false},{"title":"StdAfx.cpp <span style='color:#111;'> 212B </span>","children":null,"spread":false},{"title":"ChatServer.ncb <span style='color:#111;'> 49.00KB </span>","children":null,"spread":false},{"title":"resource.h <span style='color:#111;'> 779B </span>","children":null,"spread":false},{"title":"ServerSocket.cpp <span style='color:#111;'> 1.08KB </span>","children":null,"spread":false},{"title":"ChatServer.vcproj.YUANT.Administrator.user <span style='color:#111;'> 1.37KB </span>","children":null,"spread":false},{"title":"StdAfx.h <span style='color:#111;'> 1.08KB </span>","children":null,"spread":false},{"title":"Debug","children":[{"title":"BuildLog.htm <span style='color:#111;'> 14.73KB </span>","children":null,"spread":false}],"spread":false},{"title":"ClientSocket.cpp <span style='color:#111;'> 2.46KB </span>","children":null,"spread":false}],"spread":false},{"title":"MyChat.ncb <span style='color:#111;'> 16.96MB </span>","children":null,"spread":false},{"title":"MyChat.rc <span style='color:#111;'> 6.26KB </span>","children":null,"spread":false},{"title":"MyChat.dsw <span style='color:#111;'> 741B </span>","children":null,"spread":false},{"title":"MyChatDlg.cpp <span style='color:#111;'> 6.03KB </span>","children":null,"spread":false},{"title":"tagHeader.h <span style='color:#111;'> 124B </span>","children":null,"spread":false},{"title":"StdAfx.cpp <span style='color:#111;'> 208B </span>","children":null,"spread":false},{"title":"resource.h <span style='color:#111;'> 1.03KB </span>","children":null,"spread":false},{"title":"MyChat.aps <span style='color:#111;'> 38.96KB </span>","children":null,"spread":false},{"title":"StdAfx.h <span style='color:#111;'> 1.08KB </span>","children":null,"spread":false},{"title":"MyChat.cpp <span style='color:#111;'> 2.52KB </span>","children":null,"spread":false},{"title":"MyChatDlg.h <span style='color:#111;'> 1.52KB </span>","children":null,"spread":false},{"title":"MyChat.vcproj.YUANT.Administrator.user <span style='color:#111;'> 1.37KB </span>","children":null,"spread":false},{"title":"MyChat.sln <span style='color:#111;'> 1.31KB </span>","children":null,"spread":false},{"title":"MyChat.dsp <span style='color:#111;'> 4.45KB </span>","children":null,"spread":false},{"title":"Debug","children":[{"title":"BuildLog.htm <span style='color:#111;'> 13.62KB </span>","children":null,"spread":false}],"spread":false},{"title":"MyChat.clw <span style='color:#111;'> 2.00KB </span>","children":null,"spread":false},{"title":"MyChat.opt <span style='color:#111;'> 62.50KB </span>","children":null,"spread":false},{"title":"MyChat.h <span style='color:#111;'> 1.31KB </span>","children":null,"spread":false},{"title":"ClientSocket.cpp <span style='color:#111;'> 1.21KB </span>","children":null,"spread":false}],"spread":false}],"spread":true}]

评论信息

  • renqiang0523 :
    挺好的,就是我是个菜鸟
    2014-04-26
  • tiramimisu :
    程序 中有个小问题 .C++运行 的时候 调试阶段可以找到
    2012-06-26
  • qingqingzijuan :
    程序中有点小问题
    2012-06-13
  • qq1304115061 :
    客户端程序,出了个问题,里面有行代码多了&amp;。用vc运行,把哪行的&amp;删了才能运行
    2011-11-11

免责申明

【只为小站】的资源来自网友分享,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,【只为小站】 无法对用户传输的作品、信息、内容的权属或合法性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论 【只为小站】 经营者是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。
本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二条之规定,若资源存在侵权或相关问题请联系本站客服人员,zhiweidada#qq.com,请把#换成@,本站将给予最大的支持与配合,做到及时反馈和处理。关于更多版权及免责申明参见 版权及免责申明