This documentation provides a comprehensive overview of the Net Communication protocol.
The TCP handshake establishes a connection between two communicating devices. It involves a three-way handshake – SYN, SYN-ACK, and ACK – to ensure reliable data transfer.
1. **SYN (Synchronize):** The client sends a SYN packet to the server, indicating the request for a connection.
2. **SYN-ACK (Synchronize-Acknowledge):** The server acknowledges the client's SYN with a SYN-ACK packet.
3. **ACK (Acknowledge):** The client sends an ACK packet to acknowledge the server's SYN-ACK.
After the handshake, data can be transferred over the connection. The TCP protocol provides reliable and ordered delivery of data.
See the complete documentation for detailed information.
Copyright 2023
This is a static page providing basic information.