ppp、tcp、rtp 和 tls 哪一个是面向连接的协议?
这里没什么好说的 - 我想问一下这些协议中哪些是:
- 点对点协议
- TCP
- 实时协议
- TLS
...是面向连接的,哪些是可靠的?
There is not much to say here - I'd like to ask which of these for protocols:
- Point to Point Protocol
- TCP
- Real Time Protocol
- TLS
...are connection-oriented and which of them are reliable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您列出的协议位于不同的通信层,因此直接比较不一定有多大意义。 TLS 和 RTP 位于传输层之上,而 PPP 是链路层协议,这些协议通常(并非总是)不关心连接,例如 TCP 所关心的连接(尽管链路层协议可能提供服务来确保帧不关心连接)。丢失并按顺序到达)。长话短说,您的列表中只有 TCP 是面向连接的协议。 TLS 和 RTP 都在 TCP 和 UDP 之上工作。
The protocols you list are at different communication layers, so a direct comparison doesn't necessarily make much sense. TLS and RTP are above the transmission layer, while PPP is a link layer protocol, and these usually (not always) don't care about connections in the sense e.g. TCP does (though link layer protocols might provide services to make sure frames are not lost and arrive in order). To make a long story short, only TCP from your list is a connection-oriented protocol. TLS and RTP work both on top of TCP and UDP.