Searched refs:HTTPD_404_NOT_FOUND (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-3.4.0/examples/protocols/http_server/simple/main/ |
D | main.c | 285 httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "/hello URI is not available"); in http_404_error_handler() 289 httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "/echo URI is not available"); in http_404_error_handler() 294 httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "Some 404 error message"); in http_404_error_handler() 319 httpd_register_err_handler(req->handle, HTTPD_404_NOT_FOUND, http_404_error_handler); in ctrl_put_handler() 326 httpd_register_err_handler(req->handle, HTTPD_404_NOT_FOUND, NULL); in ctrl_put_handler()
|
/hal_espressif-3.4.0/components/esp_http_server/src/ |
D | httpd_uri.c | 91 *err = HTTPD_404_NOT_FOUND; in httpd_find_uri_handler() 296 case HTTPD_404_NOT_FOUND: in httpd_uri() 298 return httpd_req_handle_err(req, HTTPD_404_NOT_FOUND); in httpd_uri()
|
D | httpd_txrx.c | 402 case HTTPD_404_NOT_FOUND: in httpd_resp_send_err()
|
/hal_espressif-3.4.0/components/esp_http_server/include/ |
D | esp_http_server.h | 547 HTTPD_404_NOT_FOUND, enumerator 1240 return httpd_resp_send_err(r, HTTPD_404_NOT_FOUND, NULL); in httpd_resp_send_404()
|
/hal_espressif-3.4.0/examples/protocols/http_server/file_serving/main/ |
D | file_server.c | 90 httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "Directory does not exist"); in http_resp_dir_html() 237 httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "File does not exist"); in download_get_handler()
|
/hal_espressif-3.4.0/examples/protocols/http_server/captive_portal/main/ |
D | main.c | 127 httpd_register_err_handler(server, HTTPD_404_NOT_FOUND, http_404_error_handler); in start_webserver()
|