Roger Fan

Notes

High School Notes
University Notes
Computer Networking
Ch1 Computer Networks and the Internet
Ch2 Application Layer
Ch3 Transport Layer
Computer Architecture
Operating System
Chapter 0
Chapter 1: Operating System Introduction
Chapter 2: OS Structure
Chapter 3: Process Concept
Chapter 4: Multithreaded Programming
Chapter 5: Process Scheduling
Chapter 6: Process Synchronization
Chapter 7: Deadlocks
Chapter 8: Memory Management
Chapter 9: Virtual Memory Management
Chapter 10: File System Interface
Chapter 11: File System Implementation
Chapter 12: Mass Storage System
Chapter 13: IO System
Discrete Math
Calculus
Calculus I
Calculus II
Linear Algebra
Probability
General Physics
General Education
Tech Notes
TMUX
SSH
Fail2ban
SSHD
UFW
DNS Bind9
Notes
University Notes
Computer Networking
Ch3 Transport Layer

Login Required

This note requires login to view the full content (290 lines total). Showing first 20 lines as preview. Please login to view the full content.

Login to unlock

Ch3 Transport Layer

Created: 2025-11-29
Updated: 2025-11-29

Login to unlock full content

Login Now
roger@roger.tw
roger@roger.tw
© 2026 Roger Fan. All rights reserved.

3.1 Introduction and Transport-Layer Services

  • a transport-layer protocol provides for logical communication between application processes
  • logical communication := from an app's perspective, it's as if the hosts running the processes were directly connected
  • transport layer: communication between processes (segment)
  • network layer: communication between hosts (datagram)
  • TCP := Transmission Control Protocol
    • reliable, in-order delivery
    • congestion control; flow control
    • connection setup
  • UDP := User Datagram Protocol
    • unreliable, unordered delivery
    • no-frills extension of "best-effort" IP

3.2 Multiplexing and Demultiplexing

  • needed at all layers
  • multiplexing: handle data from multiple sockets, add transport header, and pass the segments to the network layer