├── .DS_Store ├── .clang-format ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── include ├── dmntcht.h ├── game-reader.hpp ├── httplib.h ├── service_guard.h └── utils.hpp ├── source ├── dmntcht.c └── main.cpp ├── sys-http.json └── toolbox.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/.DS_Store -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/README.md -------------------------------------------------------------------------------- /include/dmntcht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/include/dmntcht.h -------------------------------------------------------------------------------- /include/game-reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/include/game-reader.hpp -------------------------------------------------------------------------------- /include/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/include/httplib.h -------------------------------------------------------------------------------- /include/service_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/include/service_guard.h -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /source/dmntcht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/source/dmntcht.c -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/source/main.cpp -------------------------------------------------------------------------------- /sys-http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/sys-http.json -------------------------------------------------------------------------------- /toolbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaksabeast/sys-http/HEAD/toolbox.json --------------------------------------------------------------------------------