12 lines
347 B
C
12 lines
347 B
C
#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
|