####################################################################
# CS 208 Proxy Lab
#
# Student Source Files
####################################################################

This directory contains the files you will need for the CS 208 Proxy
Lab.

proxy.c
csapp.h
csapp.c
    These are starter files.

    You may make any changes you like to these files.  And you may
    create and handin any additional files you like.

    Please use `port-for-user.pl' or 'free-port.sh' to generate
    unique ports for your proxy or tiny server. 

Makefile
    This is the makefile that builds the proxy program.  Type "make"
    to build your solution, or "make clean" followed by "make" for a
    fresh build.

port-for-user.pl
    Generates a random port for a particular user
    usage: ./port-for-user.pl <userID>

free-port.sh
    Handy script that identifies an unused TCP port that you can use
    for your proxy or tiny. 
    usage: ./free-port.sh

driver.sh
    The autograder for Basic, Cache, and Concurrency (Parts I-III).        
    usage: ./driver.sh

nop-server.py
    Helper for the autograder.         

tiny
    Tiny Web server from the CS:APP text.