What does it mean for TCP to be connection-oriented in the transport layer?

  • Thread starter Thread starter lostinxlation
  • Start date Start date
AI Thread Summary
TCP is classified as a connection-oriented protocol because it establishes a reliable communication channel between two endpoints before data transfer begins. Unlike data link layer protocols, which set up a physical communication path, TCP does not specify a fixed route for data packets. Instead, it ensures reliable data transmission through mechanisms such as acknowledgment of received packets and retransmission of lost packets. This back-and-forth communication establishes a logical connection, requiring both ends to agree on using TCP for data exchange, which is why it is termed connection-oriented.
lostinxlation
Messages
38
Reaction score
0
Hi

I was reading the network book the other day and it said TCP was a connection-oriented protocol, and I'm now puzzled with what connection-oriented means in this instance.

I understand what connetion-oriented means in general. In the data link layer, connection-oriented communication such as ATM, Frame-Relay and telephone conversation set up the communication path first, transfer the data along that path, and tear down the path after the data transfer is done. The data flows on the same path which is set up in advance. It's very clear what connection oriented means in such a case, but I can't see a clear picture about connection-oriented in transport layer, TCP.

TCP(or any transport layer entities) doesn't specify the communication path, right ? How could TCP be connection-oriented ?
 
Computer science news on Phys.org
lostinxlation said:
Hi

I was reading the network book the other day and it said TCP was a connection-oriented protocol, and I'm now puzzled with what connection-oriented means in this instance.

I understand what connetion-oriented means in general. In the data link layer, connection-oriented communication such as ATM, Frame-Relay and telephone conversation set up the communication path first, transfer the data along that path, and tear down the path after the data transfer is done. The data flows on the same path which is set up in advance. It's very clear what connection oriented means in such a case, but I can't see a clear picture about connection-oriented in transport layer, TCP.

TCP(or any transport layer entities) doesn't specify the communication path, right ? How could TCP be connection-oriented ?

TCP is a bit sophisticated protocol which ensures that all data packets are received. If some particular packet is lost TCP will ask the transmitting end to send it again until all packets are received in full. To accomplish this the two-ends have to talk to each other back and forth. In order to do that they have to be initialized that a TCP is to be used. That's why it's called connection-oriented.
 
This week, I saw a documentary done by the French called Les sacrifiés de l'IA, which was presented by a Canadian show Enquête. If you understand French I recommend it. Very eye-opening. I found a similar documentary in English called The Human Cost of AI: Data workers in the Global South. There is also an interview with Milagros Miceli (appearing in both documentaries) on Youtube: I also found a powerpoint presentation by the economist Uma Rani (appearing in the French documentary), AI...
Back
Top