TCP Data Transfer

Here’s how the data transmission using TCP as a connection oriented protocol takes place.

As an step1 we have to first establish a connection with the system so that we can transmit the data.

Connection Establishment using 3-way handshake

In step2 the transmission takes place with proper reordering the packets or segments at the receivers end.

Data Transmision

Notice in the above image of step-2, data sent was in the following sequence : 1,2,3 then the data received at the receiver’s end is also in the same sequence 1,2,3.

Why is TCP Called a Connection Oriented Protocol?

TCP is a standard connection-oriented protocol that works under the following conditions before any transmission takes place between both devices:

Establish a logical connection with the device on receiver’s end

The Transmission Control Protocol (TCP) is a protocol of the transport layer, which is the “Heart of OSI“. And it’s a connection-oriented protocol, and two primary reasons for that are:

  1. The sender and the receiver stay connected until the transmission process is fully completed and also ensures that the data reaches its destination. If any data is lost, then the receiver asks the sender to re-transmit it.
  2. The order of the data sent by the sender is the same on the receiver’s end as well.

The path from which the packet transmission will take place will be decided prior to the transmission process, and it basically uses a method called – “The 3-way Hand-shake Method”.

Similar Reads

What is the Hand-Shake Method?

The basic idea of the hand-shake method is based on the general rule that before starting the transmission of data, some series of steps are taken in a logical order by the sender and the receiver in order to ensure delivery of the data. Below are those operations described in brief :...

Basic Terminologies

SYN: A simple flag, used to indicate initiation of a transmission. ACK: Its also a simple flag used for acknowledgement purposes and reliable delivery Reliability: TCP assigns a sequence number to every data segment sent to the sender to keep track of the data being transmitted. If the packet is lost, or some error is detected at the receiver end then the receiver will send the ACK asking for retransmission of the data. Ordered Delivery: Every data segment received by the receiver will be in the order of being sent by the sender . Ex: If the data sent by the sender is : 1234, then the receiver will also receive the data in the form – 4321. Some possible out of order sequence is 2134, 3214, 1324 etc. But, TCP ensures the order of the data received on the sender’s end. Error Detection and correction: Error detection is one way to ensure that the data received at the receiver’s end is exactly what was sent by the sender....

TCP Data Transfer

Here’s how the data transmission using TCP as a connection oriented protocol takes place....

Frequently Asked Questions

1. How does TCP ensure reliable data delivery ?...