Essential Networking Concepts: TCP, UDP, and Congestion
Classified in Computers
Written on in
English with a size of 2.5 KB
Differences Between TCP and UDP
- TCP: Connection-oriented, bytes delivered in order, arbitrary length content, flow control matches sender to receiver, and congestion control matches sender to network.
- UDP: Connectionless, messages may be lost, limited message size, can send regardless of receiver state, and can send regardless of receiver network.
TCP Connection Management
Explain using figures where and how the 3-way handshaking is used. Explain using figures how TCP releases connections (refer to the other side of this paper).
- Normal case
- Simultaneous connect
Computing Adaptive Timeout
Keep smoothed estimates of the RTT and variance in RTT. Update estimates with a moving average. Set timeout to a multiple of estimates to estimate the upper RTT in... Continue reading "Essential Networking Concepts: TCP, UDP, and Congestion" »