- Implementing Cisco Networking Solutions
- Harpreet Singh
- 253字
- 2021-07-08 10:02:16
User Datagram Protocol (UDP)
UDP is a protocol that provides connectionless service to the application, and sends data to the application layer as received, without worrying about lost parts of the application data stream or some parts being received out of order. A UDP packet is shown in Figure 11:

Figure 11: UDP packet structure
Since UDP provides lesser services compared to TCP, the packet has fewer fields and is much simpler. The UDP datagram can be of any length as can be encapsulated in the IP packets as follows, and has a header that is of fixed 8-byte length. The different fields in the UDP packet are discussed as follows:
- Source Port/Destination Port: Like TCP, UDP also serves multiple applications and hence has to provide the multiplexing function to cater to multiple applications that might want to use the services of the UDP layer. The source port/destination port fields are 16-bit identifiers that are used to distinguish the upper layer protocols. Some of the common UDP port numbers are shown in the following figure:

Figure 12: Common UDP port numbers
- Length: This 16-bit field represents the total size of each UDP datagram, including both header and data. The values range from a minimum of 8 bytes (the required header size) to sizes above 65,000 bytes.
- Checksum: Similar to TCP, this 16-bit field is used for checking the integrity of the received UDP datagram.
- Data: This is the data that is being carried in the UDP packet and includes the application layer headers.
推薦閱讀
- Extending Jenkins
- 微服務(wù)設(shè)計(第2版)
- JavaScript百煉成仙
- 單片機C語言程序設(shè)計實訓100例:基于STC8051+Proteus仿真與實戰(zhàn)
- C語言程序設(shè)計教程(第2版)
- YARN Essentials
- Python Network Programming Cookbook(Second Edition)
- Building a Quadcopter with Arduino
- Learning OpenCV 3 Computer Vision with Python(Second Edition)
- Mastering ROS for Robotics Programming
- Learning Image Processing with OpenCV
- 安卓工程師教你玩轉(zhuǎn)Android
- JavaScript語法簡明手冊
- Cinder:Begin Creative Coding
- 流暢的Python