├── .gitignore ├── LICENSE ├── README.md ├── component.mk ├── http_server.c └── http_server.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/esp32-http-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/esp32-http-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/esp32-http-server/HEAD/README.md -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /http_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/esp32-http-server/HEAD/http_server.c -------------------------------------------------------------------------------- /http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/esp32-http-server/HEAD/http_server.h --------------------------------------------------------------------------------