Synchronization or three-way handshake 10.1.2 This page will explain the synchronization process that TCP uses. The process is also called a three-way handshake. TCP is a connection-oriented protocol. Prior to data transmission, the two communicating hosts go through a synchronization process to establish a virtual connection for each session between hosts. This synchronization process ensures that both sides are ready for data transmission and allows the devices to determine the initial sequence numbers for that session. This process is known as a three-way handshake. This is a three-step process that establishes the virtual connection between the two devices. It is also important to note that the three-way handshake is initiated by a client host. To establish a TCP session, the client host will use the well-known port number of the service it wishes to contact on a server host. In step one, the initiating host (client) sends a synchronization (SYN flag set) packet to ini...