http_check

This commit is contained in:
yzc
2019-12-30 12:41:28 +08:00
commit 0f5c209486
6 changed files with 773 additions and 0 deletions

7
http_check/Makefile Normal file
View File

@@ -0,0 +1,7 @@
all:
gcc -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson
debug:
gcc -g -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson
clean:
rm *.so *.o -rf