About 50 results
Open links in new tab
  1. Difference between TCP and UDP? - Stack Overflow

    TCP and UDP are transport layer protocol, Layer 4 protocol in OSI (open systems interconnection model). The main difference along with pros and cons are as following.

  2. UDP vs TCP, how much faster is it? [closed] - Stack Overflow

    For general protocol message exchange, which can tolerate some packet loss. How much more efficient is UDP over TCP?

  3. TCP vs UDP - What is a TCP connection? - Stack Overflow

    The main difference between TCP and UDP sockets is that UDP is conectionless and doesn't use any confirmation that the other end received the data. The Transmission Control Protocol (TCP) is one of …

  4. What are examples of TCP and UDP in real life? - Stack Overflow

    Mar 16, 2011 · I know the difference between the two on a technical level. But in real life, can anyone provide examples (the more the better) of applications (uses) of TCP and UDP to demonstrate the …

  5. TCP stream vs UDP message - Stack Overflow

    Jul 3, 2013 · The interface/API presented to you the user (programmer) of these protocols are: UDP Message oriented, you have an API (send/recv and similar) that provide you with the ability to send …

  6. http - UDP vs TCP : streaming content - Stack Overflow

    Mar 22, 2023 · TCP vs UDP for streaming and real time communications is a long running and ongoing discussion. I suspect you'll find there is no single 'right' answer. In very high level terms UDP does …

  7. network programming - What is the difference between UDP and TCP ...

    Feb 3, 2011 · TCP requires both parties to negotiate a connection before data transfer can start and it is a resilient protocol since it will repeatedly resend a packet until that packet is received by the …

  8. TCP vs UDP on video stream - Stack Overflow

    I just came home from my exam in network-programming, and one of the question they asked us was "If you are going to stream video, would you use TCP or UDP? Give an explanation for both stored vide...

  9. When is it appropriate to use UDP instead of TCP? [closed]

    UDP is so misunderstood. In situations where you really want to get a simple answer to another server quickly, UDP works best. In general, you want the answer to be in one response packet, and you are …

  10. Why do game developers avoid TCP and make UDP reliable in the ...

    Sep 5, 2016 · Many game developers choose to a make UDP reliable in the application level. Isn't that what TCP is made for? I made an API that enables Client-Server communication using UDP and …