pub unsafe extern "C" fn httpd_unregister_uri_handler(
    handle: *mut c_void,
    uri: *const i8,
    method: u32
) -> i32
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