Introduction to Network Programming in VxWorks

Introduction to Network Programming in VxWorks

VxWorks is a real-time operating system (RTOS) widely used in embedded systems. Due to its high performance and reliability, it has been extensively applied in many critical fields such as aerospace, industrial control, and automotive electronics. This article will briefly introduce network programming on VxWorks, focusing on how to perform network communication and providing some … Read more

TCP/IP Protocol Stack

TCP/IP Protocol Stack

1. Application Layer The application layer is the first layer of the TCP/IP protocol, directly providing services to application processes. (Data unit: message) It supports the World Wide Web with HTTP, email with SMTP, and file transfer with the FTP protocol. 2. Transport Layer Responsible for providing general data transmission services for communication between processes … Read more

UDP Network Programming in VxWorks

UDP Network Programming in VxWorks

VxWorks is a high-performance real-time operating system widely used in embedded systems, and its network programming capabilities rely on a powerful network protocol stack that supports standard protocols such as TCP/IP and UDP.VxWorks‘s network programming interface is highly compatible with the POSIX socket API, allowing developers to use familiar functions such as socket(), bind(), sendto(), … Read more

A Concise Explanation of HTTP/1, HTTP/2, and HTTP/3

A Concise Explanation of HTTP/1, HTTP/2, and HTTP/3

Better understand how each version of HTTP works. In the early 1990s, Tim Berners-Lee and his team at CERN worked together to define four fundamental components of the internet: Hypertext document format (HTML) Data transfer protocol (HTTP) A web browser for viewing hypertext (the first browser, WorldWideWeb) A server for transmitting data (an early version … Read more

HTTP 3.0 Completely Abandons TCP: What Went Wrong?

Author l Hollis Source l Hollis (ID: hollischuang) Since HTTP/1.0 and up to HTTP/2, regardless of how the application layer protocol has improved, TCP has always been the foundation of the HTTP protocol mainly because it provides a reliable connection. However, starting from HTTP 3.0, this situation has changed. Because, in the newly released HTTP … Read more

What Did TCP Do Wrong in Abandoning HTTP 3.0?

What Did TCP Do Wrong in Abandoning HTTP 3.0?

Since HTTP/1.0, up to HTTP/2, TCP has always been the foundation of the HTTP protocol, mainly because it provides a reliable connection. However, starting from HTTP 3.0, this situation has changed. Because, in the newly launched HTTP 3.0, the TCP protocol has been completely abandoned. TCP Head-of-Line Blocking We know that during TCP transmission, data … Read more

What Went Wrong with TCP in HTTP 3.0?

Since HTTP/1.0, up to HTTP/2, regardless of how the application layer protocol has improved, TCP has always been the foundation of the HTTP protocol, mainly because it provides a reliable connection. However, starting from HTTP 3.0, this situation has changed. Because, in the newly released HTTP 3.0, the TCP protocol has been completely abandoned. TCP … Read more

CoAP: A Lightweight HTTP for IoT

CoAP: A Lightweight HTTP for IoT

CoAP: A Lightweight HTTP in IoT Hello everyone! Today I want to talk to you about a very important protocol in the field of IoT – CoAP (Constrained Application Protocol). As a veteran in embedded development, I know how painful it is to use traditional HTTP on resource-constrained devices. CoAP is like the ‘lightweight cousin’ … Read more

Ten Essential Questions About TCP/IP

Ten Essential Questions About TCP/IP

Click the “Learn Algorithms in Five Minutes” above and choose the “Star” public account Heavy content delivered first Source: Juejin, Author: Ruheng Link: https://juejin.im/post/6844903490595061767 1. TCP/IP Model The TCP/IP protocol model (Transmission Control Protocol/Internet Protocol) includes a series of network protocols that form the foundation of the Internet and is the core protocol of the … Read more

One Minute, One Diagram: Mastering TCP/IP

One Minute, One Diagram: Mastering TCP/IP

High-definition image, sourced from the internet. Suggestions: 1) View on PC 2) If viewing on mobile, please click the image to zoom Application Layer, Presentation Layer, Session Layer: HTTP, FTP, SMTP, POP3, encryption and decryption, compression and decompression, session management Transport Layer: TCP, UDP, ensuring data segments arrive effectively Network Layer: IP, ICMP, RIP, packet … Read more