资源描述:
《基于socket的聊天程序设计》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、基于socket的聊天程序设计摘要无论是Windows还是Linux,网络通信的协议已经成为组成互联网的关键,硬件方面的路由交换协议:rip,ospf,eigrp,bgp,isis,stp,rstp,vtp等,软件方面特别是传输层上的:TCP/IP,UDP,应用层上的FTP,HTTP,TELNET,DNS,DHCP等。这些都成了网络稳定通信的保证,但从某种意义上讲,网络本身是不稳定的,我们只是努力让其稳定。即时通讯软件(IM),就是基于系统的消息交换机制,它在很大程度上方便了我们的交流,本系统是基于C/S模式
2、,消息转发,语音,视频交互的简易局域网聊天工具,本身具有很强的扩展性,从98年到现在IM软件的发展是各个巨头的合作与统筹的结果。本文是在线聊天室系统的开发说明,重点运用软件工程知识对系统进行分析、设计实现和测试的思想的具体描述,其中包括软件定义,软件开发和运行的维护这三个方面。整个系统分为客户端和服务端两大端,客户端既可以实现局域网的文字聊天也可以实现点对点的语音和远程控制服务,目的是使软件的扩展性得到发挥,使软件满足广大客户的需求。关键词:IM,API,SOCKET,C/S,网络协议Communicatio
3、n SoftwareDesignBasedon WinSocketAbstract:EitherWindowsorLinux,networkcommunicationprotocolshasbecomeakeycomponentoftheInternet,hardware,routingexchangeprotocol:rip,ospf,eigrp,bgp,isis,stp,rstp,vtp,etc.,softwareinparticularonthetransportlayer: TCP/IP,UDP,ap
4、plicationlayerFTP,HTTP,TELNET,DNS,DHCPandsoon. Thestabilityofcommunicationnetworkshavebecomeaguarantee,butfromsomesense,thenetworkitselfisunstable,wejusttrytomakethemstable.Instantmessenger(IM),isbasedonthesystemmessageexchangemechanism,itislargelytofacilit
5、ateourcommunication,thesystemisbasedontheC/Smode,messageforwarding,voice,video,interactivesimpleLANchattoolitself highlyscalable,from98yearstothepresentdevelopmentofIMsoftwaregiantisalltheresultofcooperationandco-ordination. Thisarticleis thedevelopmentof o
6、nlinechatroom that focuson usingsoftwareengineeringknowledge ofthesystem analysis,design, implementandtest thespecificdescriptionof theidea,including software-defined,softwaredevelopmentand maintenanceof thesethreeareas isrunning. Thewholesystem isdividedin
7、totwomain :clientand server,theclient caneither text chat inLAN and also pointtopointvoice andremote controlservice isintendedtoenable theexpansion of thesoftwareintofullplay, tomakethesoftware tocontentourcustomers Needs.Keywords:IM,API,SOCKET,C/S,networkp
8、rotocol 目录第一章VisualC++及Socket套接字介11.1开发环境visualstudio201011.2socket套接字基础11.2.1数据报文方式21.2.2套接字的编程要点及过程21.3基本概念31.3.1带外数据31.3.2广播31.3.3字节顺序31.3.4阻塞和非阻塞41.3.5Winsock编程原理41.3.6MFCWindowsSocket类4第二章软件需求分析5第