From 4fdd715004dd98572528c6b3013f6663abc4f8f3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 10 Apr 2026 21:35:00 -1000 Subject: [PATCH] [core] Fix stale forward reference to renamed helper application.h was still pointing at fast_select_hook_fd in a doc comment after 51316f61c9 renamed it to hook_fd_for_fast_select. --- esphome/core/application.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/application.h b/esphome/core/application.h index 8c9fff2b53..ad529d8098 100644 --- a/esphome/core/application.h +++ b/esphome/core/application.h @@ -535,7 +535,7 @@ class Application { #ifdef USE_HOST /// Register/unregister a socket file descriptor with the host select() fallback loop. /// USE_LWIP_FAST_SELECT builds do not use this API — sockets hook the lwIP netconn - /// event_callback directly (see socket.h fast_select_hook_fd) and rely on FreeRTOS + /// event_callback directly (see socket.h hook_fd_for_fast_select) and rely on FreeRTOS /// task notifications for wake-up. /// NOTE: File descriptors >= FD_SETSIZE (typically 10 on ESP) will be rejected with an error. /// WARNING: These functions are NOT thread-safe. They must only be called from the main loop.