Implement HTTPS lifecycle and reboot controls
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
/* SPDX-License-Identifier: GPL-3.0-only */
|
||||
#pragma once
|
||||
#include <stdint.h>
|
||||
#include "esp_http_server.h"
|
||||
|
||||
esp_err_t web_lifecycle_settings_handler(httpd_req_t *request);
|
||||
esp_err_t web_lifecycle_operation_handler(httpd_req_t *request);
|
||||
/* Existing dispatcher only; callbacks submit IDs, never execute lifecycle work. */
|
||||
void web_lifecycle_settings_execute(uint32_t id);
|
||||
/* Only after successful HTTPD destruction, before another server can start. */
|
||||
void web_lifecycle_settings_stopped(httpd_handle_t server);
|
||||
Reference in New Issue
Block a user