Questions tagged [udp]

UDP stands for User Datagram Protocol. With UDP applications can send messages (datagrams) to other hosts on a network without requiring prior communications to set up special transmission channels or data paths.

Because UDP doesn't rely on handshaking to guarantee that packets arrive and in order it can be seen as an unreliable protocol, but for real time systems where acting on the data immediately is the most important consideration not having to wait for delayed packets is a distinct advantage.

UDP is just one communications protocol on the web. Others include:

  • Transmission Control Protocol (TCP)
  • Internet Control Message Protocol (ICMP)
  • Hypertext Transfer Protocol (HTTP)
  • Post Office Protocol (POP3)
  • File Transfer Protocol (FTP)
  • Internet Message Access Protocol (IMAP)

UDP on Wikipedia

542 questions
-4
votes
2 answers

DNS over TCP not udp

A Network problem with ISP caused all UDP traffic to cease, but DNS still working though I think it is malfunctioning. How to prove for sure using software that my current DNS queries are resolved using TCP ?
-7
votes
1 answer

How to host a TCP / UDP service on the Internet which is currently running on my local machine?

I have created a TCP server and it's currently hosted on my local machine, but I want to host it on Internet like we host websites. Is there any company which provides this service? And what's the procedure? I am a beginner, so please tell me the…
Dooby
  • 111
  • 1
1 2 3
36
37