Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between 'connection based communication' and 'Datagram based communication'?

Though i have gone through this i am not clear.

share|improve this question

1 Answer

Connection-based protocols such as TCP give you reliability and ordering assurances. They let you know if the packets you are sending actually reached their destination through an acknowledgment arrangement with the recipient. If any packets in a sequence don't make it through, the sender can be asked to resend the missing ones.

Connectionless, datagram-based protocols such as UDP don't give you reliability or ordering guarantees, but because there's "less to do" in the protocol it can be faster. Another major difference is that datagram-based protocols can usually support a broadcast of packets where multiple recipients get the same data delivered to them. With something like TCP, that's not possible because it's inherently point-to-point.

The Wikipedia pages on TCP and UDP are pretty good sources for learning more about the details.

share|improve this answer
I would argue with all of that. There's no inherent about reliability and ordering in a connected protocol. Reliable UDP and unreliable connected protocols are both possible. What connection-based protocols give you is a point-to-point connection with an agreed start and a notified finish. – EJP Apr 5 '11 at 4:28
If I had added the word "can" before "give you reliability and ordering" in the first sentence then we'd be saying the same thing. I was using TCP as the most obvious and common example. But yes, what you say above is accurate. At its most basic level a connection-based protocol gives you nothing but a simple point-to-point session. – Brian Kelly Apr 5 '11 at 14:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.