Wheel

Why does DNS use UDP instead of TCP?


DNS requests are very tiny, so they have no problems fitting into the UDP segments. It doesn’t use a time-consuming three-way hand-shake procedure to start the data transfer like TCP does. The UDP just transmits the data and save plenty of time.

To Top