Don't ignore return value of httpd_stop

This commit is contained in:
Nathan Phillips
2022-04-22 11:19:27 +01:00
committed by BOT
parent 523c51818c
commit e8e63a06e8
10 changed files with 34 additions and 40 deletions

View File

@@ -160,8 +160,9 @@ esp_err_t httpd_ssl_start(httpd_handle_t *handle, httpd_ssl_config_t *config);
* Stop the server. Blocks until the server is shut down.
*
* @param[in] handle
* @return success
*/
void httpd_ssl_stop(httpd_handle_t handle);
esp_err_t httpd_ssl_stop(httpd_handle_t handle);
#ifdef __cplusplus
}