Renormalize files

This commit is contained in:
2025-01-07 19:27:29 -04:00
parent 2bf7d29931
commit f34e528b5a
112 changed files with 12951 additions and 12951 deletions

View File

@@ -1,16 +1,16 @@
Lecture Topic: Transport Layer overview
Socket information is a tuple, port number is important
# Transport Layer
## UDP
Connectionless transport protocol, no handshake, each segment is handled independently from others
UDP segment is very simple: an 8 byte header and a payload.
It has a source port, destination port, length and checksum
The checksum in UDP is only for detection, not correction
As messages are transported through layers, they acquire new headers that wrap the existing packet
Lecture Topic: Transport Layer overview
Socket information is a tuple, port number is important
# Transport Layer
## UDP
Connectionless transport protocol, no handshake, each segment is handled independently from others
UDP segment is very simple: an 8 byte header and a payload.
It has a source port, destination port, length and checksum
The checksum in UDP is only for detection, not correction
As messages are transported through layers, they acquire new headers that wrap the existing packet
Checksum in UDP is actually optional but is required in TCP and IPv4