- 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.
推薦閱讀
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- Learning AWS Lumberyard Game Development
- Building a Quadcopter with Arduino
- Hands-On GPU:Accelerated Computer Vision with OpenCV and CUDA
- Android開發三劍客:UML、模式與測試
- Java程序設計與項目案例教程
- PHP與MySQL權威指南
- Android技術內幕(系統卷)
- HTML5 WebSocket權威指南
- JavaWeb入門經典
- RPA開發:UiPath入門與實戰
- 機器學習開發者指南
- MySQL 5.7從入門到精通(視頻教學版)(第2版)
- NLTK Essentials
- Instant RubyMine Assimilation