Commit 759dce76 authored by lillypad's avatar lillypad

RFC 8297 http hints and Makefile

parent 6aebf428
all:
mkdir -p build/
cd build/ && \
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ../ && \
make
debug:
mkdir -p build/
cd build/ && \
cmake -G "UnixMakefiles" -DCMAKE_BUILD_TYPE=Debug ../ && \
make
install:
cd build/ && \
make install
ldconfig
clean:
rm -rf build/
......@@ -31,6 +31,7 @@ namespace Http {
CODE(100, Continue, "Continue") \
CODE(101, Switching_Protocols, "Switching Protocols") \
CODE(102, Processing, "Processing") \
CODE(103, Early_Hints, "Early Hints") \
CODE(200, Ok, "OK") \
CODE(201, Created, "Created") \
CODE(202, Accepted, "Accepted") \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment