├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── compat ├── assert.h ├── ctype.h ├── limits.h ├── stddef.h ├── stdint.h └── string.h ├── htstress.c ├── http_server.c ├── http_server.h ├── main.c └── scripts ├── aspell-pws ├── commit-msg.hook ├── install-git-hooks ├── pre-commit.hook ├── pre-push.hook └── test.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/README.md -------------------------------------------------------------------------------- /compat/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/compat/assert.h -------------------------------------------------------------------------------- /compat/ctype.h: -------------------------------------------------------------------------------- 1 | /* Dummy */ 2 | -------------------------------------------------------------------------------- /compat/limits.h: -------------------------------------------------------------------------------- 1 | /* Dummy */ 2 | -------------------------------------------------------------------------------- /compat/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/compat/stddef.h -------------------------------------------------------------------------------- /compat/stdint.h: -------------------------------------------------------------------------------- 1 | /* Dummy */ 2 | -------------------------------------------------------------------------------- /compat/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/compat/string.h -------------------------------------------------------------------------------- /htstress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/htstress.c -------------------------------------------------------------------------------- /http_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/http_server.c -------------------------------------------------------------------------------- /http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/http_server.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/main.c -------------------------------------------------------------------------------- /scripts/aspell-pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/scripts/aspell-pws -------------------------------------------------------------------------------- /scripts/commit-msg.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/scripts/commit-msg.hook -------------------------------------------------------------------------------- /scripts/install-git-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/scripts/install-git-hooks -------------------------------------------------------------------------------- /scripts/pre-commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/scripts/pre-commit.hook -------------------------------------------------------------------------------- /scripts/pre-push.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/scripts/pre-push.hook -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/khttpd/HEAD/scripts/test.sh --------------------------------------------------------------------------------