-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
41 lines (32 loc) · 1.13 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
####################################################################
# CS:APP Proxy Lab
#
# Student Source Files
#
####################################################################
This directory contains the files you will need for the CS:APP Proxy
Lab.
proxy.c
csapp.h
csapp.c
These are the files you will be modifying and handing in.
proxy.c should contain the entire implementation of your proxy code
including HTTP request parsing, cache management, etc.
csapp.c and csapp.h are described in your textbook. You may
make any changes you like to these files.
Please use `port_for_user.pl' (as described below) to generate a
port for your proxy.
#########################################
# You shouldn't modify any of these files
#########################################
README
This file
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 <AndrewID>
tiny
Tiny Web server from the CS:APP text