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

    What is the difference between TCP and UDP? I know that TCP is used in the case of non-time critical applications, and UDP is used for games or applications that require fast transmission …

  2. Difference between a TCP Socket and a Connected UDP Socket

    Jul 12, 2016 · Last, as udp and tcp are different protocols, they require different settings in firewalls to allow passing through to the server if the server is behind a firewall. Also you can't …

  3. network programming - What is the difference between UDP and …

    Feb 3, 2011 · TCP is a reliable, connected stream protocol. Its view of data is that of a bidirectional stream of bytes between hosts: whatever bytes you send will arrive at the other …

  4. Differences between TCP sockets and web sockets, one more time

    Jun 5, 2013 · Closed 7 years ago. Trying to understand as best as I can the differences between TCP socket and websocket, I've already found a lot of useful information within these …

  5. udp - Can I use broadcast or multicast for TCP? - Stack Overflow

    UDP is not Reliable. This is a major difference between TCP and UDP. So here is the Deal, there is UDP and R-UDP. R-UDP is a Different RFC (see link at bottom) then UDP. That RFC is …

  6. 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?

  7. how to differentiate tcp/udp when programming sockets

    Apr 6, 2015 · The difference between UDP and TCP sockets is rather big, but the differences translate across programming languages. Some information on sockets on the Python Wiki: …

  8. What is the difference between a port and a socket?

    Sep 30, 2008 · A port denotes a communication endpoint in the TCP and UDP transports for the IP network protocol. A socket is a software abstraction for a communication endpoint …

  9. HTTP vs TCP/IP, send data to a web server - Stack Overflow

    In Short: TCP is a transport-layer protocol, and HTTP is an application-layer protocol that runs over TCP. Detail:To understand the difference (and a lot of other networking topics), you need …

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

    Mar 17, 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 …