feat: validate credentials, persist them, and switch without rebooting

This commit is contained in:
2026-09-01 21:24:55 +03:00
parent bad0803a6a
commit fd978f323d
10 changed files with 270 additions and 58 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef CAPTIVE_PORTAL_H
#define CAPTIVE_PORTAL_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
bool captive_portal_is_probe_path(const char *path);
bool captive_portal_dns_response(const uint8_t *query, size_t query_length, const uint8_t address[4], uint8_t *response, size_t response_capacity, size_t *response_length);
#endif