Layer: L6 Presentation ยท Build flags: PC_ENABLE_AUTH_LOCKOUT (requires PC_ENABLE_AUTH, on by default)
What this example teaches
This puts a per-source-IP guard in front of authenticated routes. After a few wrong passwords from one address, that address is locked out with exponential backoff and gets 429 Too Many Requests + Retry-After (without even checking credentials) instead of unlimited guesses. A correct login clears the address immediately. State lives in a fixed BSS table - no heap.
It is transparent to your route. You protect the route exactly as in BasicAuth; enabling the flag adds the lockout in front of the credential check automatically:
server.on(
"Restricted", "admin", "s3cret");
@ HTTP_GET
Safe, idempotent read.
Fully-parsed HTTP/1.1 request.
Tuning. The thresholds live in protocore_config.h: PC_AUTH_LOCKOUT_THRESHOLD (failures before locking), PC_AUTH_LOCKOUT_BASE_MS and PC_AUTH_LOCKOUT_MAX_MS (the backoff window, which doubles per subsequent failure up to the max), and PC_AUTH_LOCKOUT_SLOTS (how many addresses are tracked). Set them as build flags alongside the enable flag.
Build dependency. PC_ENABLE_AUTH_LOCKOUT requires PC_ENABLE_AUTH (which is on by default) - enforced by a compile-time #error.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--project-option="build_flags=-DPC_ENABLE_AUTH_LOCKOUT=1" \
--lib="." examples/L6-Presentation/AuthLockout/AuthLockout.ino
# repeat until you get 429, then wait out Retry-After and use the right password:
curl -u admin:wrong http://<ip>/secret # ...x several -> 429 + Retry-After
curl -u admin:s3cret http://<ip>/secret # clears the lockout for your IP
Annotated source
The complete sketch (AuthLockout.ino), reproduced verbatim with added explanatory comments:
#define PC_ENABLE_AUTH_LOCKOUT 1
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
void setup()
{
Serial.print("Connecting to WiFi");
{
delay(250);
Serial.print('.');
}
Serial.printf("IP: %u.%u.%u.%u\n", (unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF),
(unsigned)((ip >> 16) & 0xFF), (unsigned)((ip >> 24) & 0xFF));
"Restricted", "admin", "s3cret");
}
void loop()
{
}
Single-port HTTP server with deterministic, zero-allocation execution.
void send(uint8_t slot_id, int code, const char *content_type, const char *payload)
Send an HTTP response with a body and close the connection.
int32_t begin(const WebServerConfig *cfg=nullptr)
Initialize all connection slots and open all registered listeners.
void on(const char *path, HttpMethod method, Handler callback)
Register a route handler.
void handle()
Drive the server - call every Arduino loop() iteration.
bool init_wifi_physical(const char *, const char *)
Connect to a WiFi access point.
uint32_t pc_net_egress_ip(void)
IPv4 (network byte order) of the current egress interface, or 0 if none.
bool wifi_ready()
True if the WiFi station link is up (associated + an IP is assigned).
Layer 1 (Physical) - link bring-up and live egress-interface reporting.
Layer 7 (Application) - public HTTP routing API.