Function esp_idf_sys::httpd_unregister_uri_handler
source ยท pub unsafe extern "C" fn httpd_unregister_uri_handler(
handle: httpd_handle_t,
uri: *const c_char,
method: httpd_method_t,
) -> esp_err_t
Expand description
@brief Unregister a URI handler
@param[in] handle handle to HTTPD server instance @param[in] uri URI string @param[in] method HTTP method
@return
- ESP_OK : On successfully deregistering the handler
- ESP_ERR_INVALID_ARG : Null arguments
- ESP_ERR_NOT_FOUND : Handler with specified URI and method not found