DeterministicESPAsyncWebServer 1.2.0
Zero-allocation, bounded-execution async HTTP server for ESP32
Loading...
Searching...
No Matches
network.cpp File Reference

Layer 3 (Network) — IP routing and packet forwarding stub. More...

#include "network.h"

Go to the source code of this file.

Functions

void init_network_layer ()
 Initialise the network layer.
 

Detailed Description

Layer 3 (Network) — IP routing and packet forwarding stub.

IPv4/IPv6 routing, DHCP, ARP, ICMP, and DNS resolution are all transparent to this library — they run inside the lwIP stack. This function is provided as an architectural extension point for future work such as static-route injection or custom ICMP handling.

Definition in file network.cpp.

Function Documentation

◆ init_network_layer()

void init_network_layer ( )

Initialise the network layer.

Currently a no-op; lwIP manages IP routing internally. Call this if you later add static-route configuration, ICMP echo handling, or custom network-layer diagnostics.

Definition at line 16 of file network.cpp.