hey-kong / minnow

Stanford CS 144: Computer Networking

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CS144: Spring 2023

Lab

  • Checkpoint 0: networking warmup
  • Checkpoint 1: stitching substrings into a byte stream
  • Checkpoint 2: the TCP receiver
  • Checkpoint 3: the TCP sender
  • Checkpoint 4: down the stack
  • Checkpoint 5: building an IP router
  • Checkpoint 6: putting it all together

Note

These labs are open to the public under the (friendly) request that to preserve their value as a teaching tool, solutions not be posted publicly by anybody.

Website: https://cs144.stanford.edu

To set up the build system: cmake -S . -B build

To compile: cmake --build build

To run tests: cmake --build build --target test

To run speed benchmarks: cmake --build build --target speed

To run clang-tidy (which suggests improvements): cmake --build build --target tidy

To format code: cmake --build build --target format

About

Stanford CS 144: Computer Networking


Languages

Language:C++ 96.3%Language:CMake 2.5%Language:Shell 0.8%Language:Python 0.3%