Merge pull request #32 from rschmidtz/patch-1

What is the difference between TCP and UDP answer
This commit is contained in:
Arie Bregman 2019-10-24 02:09:27 +03:00 committed by GitHub
commit f08d861ee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -542,6 +542,8 @@ CSMA/CD algorithm:
<details>
<summary>What is the difference between TCP and UDP?</summary><br><b>
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.
</b></details>
<details>