DeterministicESPAsyncWebServer 1.2.0
Zero-allocation, bounded-execution async HTTP server for ESP32
Loading...
Searching...
No Matches
network.cpp
Go to the documentation of this file.
1// Copyright (C) 2026 Douglas Quigg (dstroy0) <dquigg123@gmail.com>
2// SPDX-License-Identifier: AGPL-3.0-or-later
3
4/**
5 * @file network.cpp
6 * @brief Layer 3 (Network) — IP routing and packet forwarding stub.
7 *
8 * IPv4/IPv6 routing, DHCP, ARP, ICMP, and DNS resolution are all
9 * transparent to this library — they run inside the lwIP stack. This
10 * function is provided as an architectural extension point for future
11 * work such as static-route injection or custom ICMP handling.
12 */
13
14#include "network.h"
15
17{
18 // No-op: lwIP owns all L3 (IP) operations.
19}
void init_network_layer()
Initialise the network layer.
Definition network.cpp:16
Layer 3 (Network) — IP routing and packet forwarding.