From 073940cfe851b61e3d0fd129c0eecede00c8f9b7 Mon Sep 17 00:00:00 2001 From: Libert R Schmidt Date: Wed, 23 Oct 2019 19:00:07 -0400 Subject: [PATCH] What is the difference between TCP and UDP answer What is the difference between TCP and UDP answer --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 75beaad..8bb6b1c 100644 --- a/README.md +++ b/README.md @@ -542,6 +542,8 @@ CSMA/CD algorithm:
What is the difference between TCP and UDP?
+ +TCP establishes a connection between the client and the server to guarantee the order of the packages, on the other hand, UDP does not establish a connection between client and server and doesn't handle package order. This makes UDP more lightweight than TCP and a perfect candidate for streaming services.