From b7f5187b69f1b139752b067b4891cbd45f1100a7 Mon Sep 17 00:00:00 2001 From: Devansh Agarwal Date: Tue, 4 Jun 2024 21:26:51 -0400 Subject: [PATCH] Update README.md Updated the link for Handshake wiki to https://en.wikipedia.org/wiki/Handshake_(computing). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64177cdb..21a8e51f 100644 --- a/README.md +++ b/README.md @@ -1433,7 +1433,7 @@ HTTP is an application layer protocol relying on lower-level protocols such as * Source: How to make a multiplayer game

-TCP is a connection-oriented protocol over an [IP network](https://en.wikipedia.org/wiki/Internet_Protocol). Connection is established and terminated using a [handshake](https://en.wikipedia.org/wiki/Handshaking). All packets sent are guaranteed to reach the destination in the original order and without corruption through: +TCP is a connection-oriented protocol over an [IP network](https://en.wikipedia.org/wiki/Internet_Protocol). Connection is established and terminated using a [handshake](https://en.wikipedia.org/wiki/Handshake_(computing)). All packets sent are guaranteed to reach the destination in the original order and without corruption through: * Sequence numbers and [checksum fields](https://en.wikipedia.org/wiki/Transmission_Control_Protocol#Checksum_computation) for each packet * [Acknowledgement](https://en.wikipedia.org/wiki/Acknowledgement_(data_networks)) packets and automatic retransmission