12 lines
510 B
C
12 lines
510 B
C
/* 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);
|