网站大量收购闲置独家精品文档,联系QQ:2885784924

[信息与通信]5server_algorithm.ppt

  1. 1、本文档共33页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[信息与通信]5server_algorithm

Pursuing Knowledge for the Prosperity of Singapore Ch 10: Iterative, Connection-Oriented Server (TCP) while (1) { alen = sizeof(fsin); ssock = accept(msock, (struct sockaddr *)fsin, alen); if (ssock 0) errexit(accept failed: %s\n, strerror(errno)); TCPdaytimed(ssock); (void) close(ssock); } } Ch 10: Iterative, Connection-Oriented Server (TCP) /*------------------------------------------------------------------------ * TCPdaytimed - do TCP DAYTIME protocol *------------------------------------------------------------------------*/ void TCPdaytimed(int fd) { char *pts; /* pointer to time string */ time_t now; /* current time */ char *ctime(); (void) time(now); pts = ctime(now); (void) write(fd, pts, strlen(pts)); } Lecture 5 Server Algorithms in Socket Programming Ligang Dong Tel: 28877723652068 Email: donglg@ Web:http://netcom. /dlg/ College of Information Electronic Engineering Zhejiang Gongshang University Content of Today Question and Answer Ch8 – Algorithms and Issues in Servers Ch9 – UDP Server Ch10 – TCP Server How to locate the server How to convert between domain name and IP address How to convert between port number and server name How to convert between protocol number and protocol number TCP 3-way handshake “connected” UDP memcpy and strcpy Question and Answer End-To-End=Host-To-Host It involves exactly two endpoints - a client application at one end and a server at the other Point-To-Point? Ch 8: Algorithms and Issues in Server Software Design connection-oriented (TCP) vs. connectionless (UDP) advantage of TCP without worrying about reliability (no duplication, the same order, no loss, no corruption, congestion and flow control) disadvantage of TCP require a separate socket for each connection if clients crash repeatedly, the server will run out of resources (i.e., sockets, buffer space, TCP connection) The TCP slow-start problem occurs when the TCP session is too short for the TCP cong

文档评论(0)

jiupshaieuk12 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:6212135231000003

1亿VIP精品文档

相关文档