├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── benchmark └── node-server.js ├── libs ├── CMakeLists.txt ├── helpers.c ├── helpers.h ├── macros.h └── structs.h └── src └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/node-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/benchmark/node-server.js -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/libs/helpers.c -------------------------------------------------------------------------------- /libs/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/libs/helpers.h -------------------------------------------------------------------------------- /libs/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/libs/macros.h -------------------------------------------------------------------------------- /libs/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/libs/structs.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Becavalier/tiny-http-echo-server/HEAD/src/main.c --------------------------------------------------------------------------------