in Computer Networks
719 views
3 votes
3 votes
Do all the TCP segments travel through same path once the connection is established ?
in Computer Networks
719 views

3 Answers

2 votes
2 votes
No. TCP though is a connection oriented but it is so only at the end-to-end devices. Means, though each segment will travel or may take a different path from source to destination but the receiver's transport layer always delivers in-order segments to the application layer of receiver thereby making sending process and receiving process feel like they are connected via a virtual circuit but actually there is no such circuit establishment.

4 Comments

Do all UDP segments go through the same path or it is same as TCP?
0
0
See, once your transport layer hands over the data to the network layer, now this packet is routed independently of other packets.So, whether it's TCP or UDP, packets won't follow the same order everytime
0
0
Are UDP segments atlast send datas in order to the application layer from transport layer?
0
0
Let me check about it
0
0
1 vote
1 vote
0 votes
0 votes
Nope. TCP is end-end connection layer which used data-gram packet switching technique. It means that segments are divided into small packets and then sent through different different paths. Its not dependent on time unlike UDP, but makes sures that reciever recieves all the packets without loosing them.

Related questions