| 581 | } |
| 582 | |
| 583 | esp_err_t rootHandler(httpd_req_t *req) { |
| 584 | if (req->method == HTTP_POST) { |
| 585 | streamMultipartUpload(req); |
| 586 | return ESP_OK; |
| 587 | } |
| 588 | if (checkUserWebAuth(req, true)) serveWebUIFile(req, "text/html", true, index_html, index_html_size); |
| 589 | return ESP_OK; |
| 590 | } |
| 591 | |
| 592 | esp_err_t systemInfoHandler(httpd_req_t *req) { |
| 593 | char response_body[300]; |
nothing calls this directly
no test coverage detected