Home >Topic List >What is the difference between TCP protocol and UDP protocol?
The main difference is: connection mode: tcp is connection-oriented and needs to establish a connection; udp is connectionless and sends data directly. Reliability: TCP is reliable and ensures that the data is transmitted in complete order; UDP is unreliable and does not guarantee that the data is transmitted in order. Transmission method: tcp uses streaming transmission, udp uses message transmission.