Implement HTTPS lifecycle and reboot controls

This commit is contained in:
2026-09-13 17:24:00 +02:00
parent 737bd29f9e
commit 36e80811e8
24 changed files with 1392 additions and 75 deletions
+11
View File
@@ -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);