This repository was archived by the owner on Jul 3, 2021. It is now read-only.
File tree 4 files changed +8
-16
lines changed
4 files changed +8
-16
lines changed Original file line number Diff line number Diff line change 1
1
* .o
2
2
proxy
3
- .goutputstream- *
4
3
core. *
5
4
proxy.log
5
+
Original file line number Diff line number Diff line change 1
- VERSION = 1
2
- HANDINDIR = /labs/proxylab/handin/$(shell whoami)
3
-
4
1
CC = gcc
5
2
CFLAGS = -Wall -g -pedantic
6
3
LDFLAGS = -lpthread -pthread
@@ -14,11 +11,6 @@ proxy: $(OBJS)
14
11
proxy.o : proxy.c
15
12
$(CC ) $(CFLAGS ) -c proxy.c -std=c99
16
13
17
- handin :
18
- cp proxy.c $(HANDINDIR ) /$(shell whoami) -$(VERSION ) -proxy.c
19
- chmod 600 $(HANDINDIR ) /$(shell whoami) -$(VERSION ) -proxy.c
20
-
21
-
22
14
clean :
23
- rm -f * ~ * .o proxy core
15
+ rm -f * ~ * .o proxy core proxy.log
24
16
Original file line number Diff line number Diff line change 1
- ****************
2
1
HTTP Proxy
3
- ****************
4
2
5
- Makefile - For building and handing in proxy
6
- README - This file
3
+ NOTE: Not fully HTTP 1.1 compliant.
4
+
5
+ Makefile - For building proxy
6
+ README - This file
7
7
8
8
# Proxy source files
9
- proxy.{c,h} - Primary proxy code
9
+ proxy.c - Primary proxy code
10
10
Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ proxy_header_parse_head (
737
737
738
738
/*
739
739
* Parses a header line to get the key and value of that line
740
- */
740
+ */
741
741
static bool
742
742
proxy_header_parse_line (
743
743
const struct string line ,
You can’t perform that action at this time.
0 commit comments