networking - are TCP client and server in equivalent status after TCP 3_way handshake -
When a TCP client wants to set up a TCP connection to the TCP server, it only requires sending the SQL, and Then the TCP server sends SYN / ACK, so they are different
But, after handshaking 3_way, this connection is symmetrical, that is, the TCP client and server in the same situation, for example, the 3-way handshake Afterwards, generally the client can send the packet first, whether TCP Can I send packets first?
No, the process is not completely different, but instead of sending an SCN, one in two separate packets ACK, the server unites them by sending them through the same packet!
On the other hand, always remember that the customer / server naming is relative. The server is a party that lives in listening mode, while the client is the party that starts the connection ... After the establishment of the connection, both parties are equal (similar situation you said: established). For this reason, both FIN statements can be sent to close both connections ...
Comments
Post a Comment