The TCP protocol is a connection-oriented, reliable, byte stream-based transport layer communication protocol. TCP is a full-duplex mode that requires three handshakes to establish a connection and four handshakes to close the connection. Three-way handshakeThree-way handshake means that when establishing a TCP connection, the client and server need to send a total of three messages. The purpose of the three-way handshake is to connect to the server's designated port, establish a TCP connection, synchronize the sequence numbers and confirmation numbers of both parties, and exchange TCP window size information. In socket programming, when the client executes connect(), a three-way handshake will be triggered. The three-way handshake process is as follows: picture At the beginning, both the client and the server are in the CLOSED state, and then the server process is in the LISTEN state, waiting for the client's connection request.
Why is a three-way handshake needed instead of a two-way handshake? The purpose of the three-way handshake is to prevent an invalid connection request from being suddenly sent to the server, causing an error. Assume that a two-way handshake is used to establish a connection. The client sends a connection request to the server for the first time. Due to network delay, it has not reached the server. So the client sends a connection request to the server again. After receiving the connection request, the server replies to the client to confirm and establish the connection. However, the network delay is restored at this time, and the server receives the connection request sent by the client for the first time. The server believes that the client has initiated a connection again, replies to confirm again, and another connection is established. The server thinks there are two connections, while the client thinks there is one connection, resulting in inconsistent data status. As for why the four-way handshake is not used like disconnection, it is because the server combines the connection confirmation request and the connection establishment request sent to the client into one request and sends it to the client. Four wavesFour waves means that when a TCP connection is disconnected, the client and server need to send a total of 4 messages to confirm the disconnection of the connection. The process of four waves is as follows: picture
Why do we need to wave four times?Since the TCP connection is full-duplex, that is, data can flow in both directions, each direction must be closed separately. Closing the connection in one direction requires one request and one confirmation, which ultimately requires four requests. Why can't it be three times? Can't the second and third times be combined into one like establishing a connection? Because in the second request, the server sends a confirmation to the client to close the connection. At this time, the server may have some data that has not been transmitted yet and needs to continue sending data to the client. It cannot be merged with the connection closing request sent by the server to the client, so it needs to be split into two connection requests. |
<<: How to ensure the secure integration of IT and OT
>>: Understand 5G-A multi-frequency coordination—“3CC” in one minute
VMISS (Virtual Machines Innovative Solutions) was...
Cai Yiqun told reporters that the deployment of I...
As one of the most important infrastructures, fib...
In recent years, communication technology has dev...
background For some customers working on video an...
On November 7, the 24th meeting of the Standing C...
According to the latest report released by China ...
[51CTO.com original article] Whenever people ment...
A data center is a complex organization with many...
Megalayer recently launched a VPS host in Singapo...
October 10, 2018 Shanghai - Huawei and Standard C...
The overall flow chart is as follows: 1. URL pars...
This article will serve as a guide for using MTP ...
The digital divide has not yet disappeared, and t...
Computer Network What is TCP congestion control? ...