TCP Connection Establishment Process
The following scenario occurs when a TCP connection is established:
- The server must be prepared to accept an incoming connection. This is normally done by calling
socket
,bind
andlisten
and is called apassive open
.
- The server must be prepared to accept an incoming connection. This is normally done by calling
- The client issues an active open by calling connect. This causes the client TCP to send a ‘synchronize’(SYN) segment, which tells the server it’s initial sequence number for the data that the client will send on the connection. Normally, there is no data sent with SYN, it just contains IP header, TCP header and possible TCP options
- The server must acknowledge(ACK) the client’s SYN and must also send it’s own SYN which contains, the server sends it’s own SYN and the ACK of client’s SYN in one segment.