Layer: L7 Application ยท Build flags: none
What this example teaches
A device with both WiFi and Ethernet has a "default route" the OS picks for outbound traffic, and it can flip on a cable pull. pc_net_egress() reports the live egress interface and pc_net_egress_ip() its IP, queried on demand - no manager and no polling loop. The OS (esp_netif) does the failover; this just reports the current state, useful for logging, telemetry tags, or an "online via
Ethernet / WiFi" badge in a UI.
Query on demand:
uint32_t pc_net_egress_ip(void)
IPv4 (network byte order) of the current egress interface, or 0 if none.
pc_iface pc_net_egress(void)
Which interface currently carries outbound traffic.
pc_iface
Network interface a connection arrived on (for per-route filtering).
The handler maps the enum to a name and formats the IP as JSON. Wire an Ethernet PHY alongside WiFi and the reported interface flips when you pull the cable.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--lib="." examples/L7-Application/NetEgress/NetEgress.ino
curl http://<ip>/net # {"egress":"wifi-sta","ip":"192.168.1.42"}
Annotated source
The complete sketch (NetEgress.ino), reproduced verbatim with added explanatory comments:
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
static const char *iface_name(
pc_iface i)
{
switch (i)
{
return "ethernet";
return "softap";
return "wifi-sta";
default:
return "none";
}
}
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));
Serial.printf(
"egress interface: %s\n", iface_name(
pc_net_egress()));
char body[96];
snprintf(body,
sizeof(body),
"{\"egress\":\"%s\",\"ip\":\"%u.%u.%u.%u\"}", iface_name(
pc_net_egress()),
(unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF), (unsigned)((ip >> 16) & 0xFF),
(unsigned)((ip >> 24) & 0xFF));
server.
send(
id, 200,
"application/json", body);
});
}
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.
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.
@ HTTP_GET
Safe, idempotent read.
@ PC_IFACE_AP
softAP interface (clients joined to the device).
@ PC_IFACE_ETH
Ethernet interface (wired PHY).
@ PC_IFACE_STA
Station interface (joined to an AP / your LAN).
Fully-parsed HTTP/1.1 request.