- 1、本文档共31页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
PAGE \* MERGEFORMAT 1
第一章
3.什么是客户机程序?什么是服务器程序?一个服务器程序请求和接收来自客户机程序的服务吗?
答:联网的程序通常包括两部分,每一个运行在不同的主机上,互相通信。发起通信的程序是客户机程序。接受客户端请求并提供服务的是服务器程序。一般是客户机程序请求和接收来自服务器程序的服务。
A:A networking program usually has two programs, each running on a different host, communicating with each other. The program that initiates the communication is the client. Typically, the client program requests and receives services from the server program.
什么事因特网提供给其应用程序的两类服务?这些服务的每一类都有哪些特征?
答:互联网向其应用提供两种服务:面向连接的(TCP)和面向无连接的(UDP)。每一种互联网应用采取其中的一种。
面向连接服务的原理特征:
在都没有发送数据之前2个端系统先进性“握手”。
提供可靠的数据传送。也就是说,连接的一方将所有的应用数据有序且无差错的传送到连接的另一方。
提供流量控制。也就是确报链接的任何一方不会过快的发送过量的分组而淹没另一方。
提供用塞控制。即管理应用发送进网络的数据量,帮助防止互联网进入迟滞状态。
无连接的服务特征
没有握手;
没有可靠数据传送的保证;
没有流量控制或者拥塞控制;
A:The Internet provides its applications a connection-oriented service (TCP) and a connectionless service (UDP). Each Internet application makes use of one these two services. The two services will be discussed in detail in Chapter 3.
Some of the principle characteristics of the connection-oriented service are:
? Two end-systems first “handshake” before either starts to send application data to the other.
? Provides reliable data transfer, i.e., all application data sent by one side of the connection arrives at the other side of the connection in order and without any gaps.
? Provides flow control, i.e., it makes sure that neither end of a connection overwhelms the buffers in the other end of the connection by sending to many packets to fast.
? Provides congestion control, i.e., regulates the amount of data that an application can send into the network, helping to prevent the Internet from entering a state of grid lock.
The principle characteristics of connectionless service are:
? No handshaking
? No guarantees of reliable data transfer
? No flow control or congestion control
有人说,流量控制和拥塞控制是等价的。这对于英特网的面向连接的面向连接服务正确吗?流量控制和拥塞控制的 目标相同吗?
答:流量控制和用塞控制是面向不同的对象的不同控制机理。流量控制确保连接的任何一方不会因为对方发的过快而被另一方淹没。用塞控制是用来管理应用发送进网络的数据总量,帮助防止互联网核心(路由器的缓冲区)发色好难过拥塞。
A:Flow contr
文档评论(0)