Add sorted_list, timer_queue, and DHCP discover with inline options

This commit is contained in:
Ian Gulliver
2026-04-05 21:23:14 +09:00
parent 421cb5840e
commit 28caa2e590
6 changed files with 175 additions and 0 deletions

5
include/dhcp.h Normal file
View File

@@ -0,0 +1,5 @@
#pragma once
#include <array>
#include "timer_queue.h"
void dhcp_start(timer_queue& timers, const std::array<uint8_t, 6>& mac);