博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
udp协议_UDP协议
阅读量:2506 次
发布时间:2019-05-11

本文共 1291 字,大约阅读时间需要 4 分钟。

udp协议

UDP, User Datagram Protocol, is a transfer protocol, an alternative to TCP.

UDP( 用户数据报协议 )是一种传输协议,是TCP的替代协议。

Its main difference from TCP is that it’s connectionless.

它与TCP的主要区别在于它是无连接的。

This implies that it’s faster, each packet sent is more lightweight, as it does not contain all the information needed in TCP, and it does have a lighter handshake process.

这意味着它速度更快,每个发送的数据包都更轻巧,因为它不包含TCP中所需的所有信息,并且握手过程也更轻松。

The drawback is that UDP is not reliable as TCP.

缺点是UDP不像TCP那样可靠。

In TCP, if a packet gets lost, the protocol is able to handle it and the packet is re-sent.

在TCP中,如果数据包丢失,则协议可以对其进行处理,然后重新发送该数据包。

In UDP, this is not built-in into the protocol, and must be handled at a higher level (built on top of it). There is no built-in check to control if a packet was received, and if it is received correctly.

在UDP中,它不是内置在协议中,必须在更高级别上进行处理(在其之上构建)。 没有内置检查来控制是否接收到数据包以及是否正确接收到数据包。

UDP was defined in in 1980.

UDP在1980年的中定义。

Some of the most notable application protocols that rely on the UDP layer are DNS and DHCP, and more importantly is the base layer of HTTP/3, the next version of HTTP.

依赖UDP层的一些最著名的应用协议是DNS和DHCP,更重要的是HTTP / 3的基础层, HTTP / 3HTTP的下一版本。

The UDP protocol uses ports to allow communication between processes, like with TCP.

UDP协议使用端口来允许进程之间进行通信,例如使用TCP。

翻译自:

udp协议

转载地址:http://momgb.baihongyu.com/

你可能感兴趣的文章
spfile
查看>>
Team Foundation Service更新:改善了导航和项目状态速查功能
查看>>
0x13 链表与邻接表
查看>>
js封装设置获取cookie
查看>>
二值图像连通区域标记
查看>>
MVC in Javascript
查看>>
eclipse 创建的Android工程的结构
查看>>
第8章 Android异常与性能优化相关面试问题
查看>>
linux 定时备份文件夹
查看>>
有道单词导入 大量有道单词 生词本 批量导入 添加 有道单词XML 背单词
查看>>
jQuery Easing动画效果扩展插件
查看>>
bzoj 1002 [FJOI2007]轮状病毒 Matrix-Tree定理+递推
查看>>
Selenium WebDriver- 操作JavaScript的Alert弹窗
查看>>
娘的,自己的求逆序对模板又不好使了。。。。。。。。
查看>>
C#面向对象模式设计第十四讲:Template Method 模板模式(行为型模式)
查看>>
linux后台运行命令:&和nohup
查看>>
springboot + shiro学习(配置SecurityManager,Realm)
查看>>
http://desk.zol.com.cn/1600x900/
查看>>
Linux基础之命令练习Day3-文件管理:cat,tar,gzip,vim,ln
查看>>
iOS中使用nil NULL NSNULL的区别
查看>>