How does UDP work if it is a connectionless protocol?

746 views

There are two main connection protocols: TCP and UDP, and the latter is a “connectionless” protocol, so how is data transferred if there is no established connection between sender and recipient?

In: 1

9 Answers

Anonymous 0 Comments

The TCP protocol is basically “hey? Did you get my packet? Yes? Okay, next one. No? Okay, I’ll send that one again.” It’s a constant back-and-forth that makes sure every packet was sent and received.

UDP is a little different. You’re shooting the packets at the recipient without confirming that each individual packet was received.

You are viewing 1 out of 9 answers, click here to view all answers.