文件名称:client
- 所属分类:
- TCP/IP协议栈
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 3kb
- 下载次数:
- 0次
- 提 供 者:
- Mengm******
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
用TCP 和UDPprotocol来传输数据,具体请见英文描述-Introduction
In this assignment, you will build a client for a simple streaming transport protocol.
Media streams such as compressed video or audio are typically delay and jitter sensitive-
real-time conversations require 100 ms or less round-trip delay and human ear is very
sensitive to irregular sampling in audio. The long delay imposed by retransmission makes
Transmission Control Protocol (TCP) an unlikely candidate to carry media streams.
Fortunately, with proper error concealment, human perception is not very sensitive to
data loss in video and audio. Thus, User Datagram Protocol (UDP) is commonly
employed to transport media streams. However, there are many problems with UDP-
delay jitter, out-of-order arrival and packet loss. A commonly used technique is to buffer
up some packets to obtain a smoother play-back in the expense of some small delay. An
example is given by the following diagram:
As packet arrives from the network, the stream transport layer will delay the
In this assignment, you will build a client for a simple streaming transport protocol.
Media streams such as compressed video or audio are typically delay and jitter sensitive-
real-time conversations require 100 ms or less round-trip delay and human ear is very
sensitive to irregular sampling in audio. The long delay imposed by retransmission makes
Transmission Control Protocol (TCP) an unlikely candidate to carry media streams.
Fortunately, with proper error concealment, human perception is not very sensitive to
data loss in video and audio. Thus, User Datagram Protocol (UDP) is commonly
employed to transport media streams. However, there are many problems with UDP-
delay jitter, out-of-order arrival and packet loss. A commonly used technique is to buffer
up some packets to obtain a smoother play-back in the expense of some small delay. An
example is given by the following diagram:
As packet arrives from the network, the stream transport layer will delay the
(系统自动生成,下载前可以参看下载内容)
下载文件列表
client.c