From 2375faee88a168b616c6822a86608c171c501f1b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 9 Apr 2026 08:54:08 -1000 Subject: [PATCH] fixes, update --- esphome/components/socket/lwip_raw_tcp_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/socket/lwip_raw_tcp_impl.cpp b/esphome/components/socket/lwip_raw_tcp_impl.cpp index abb6c2537d..a849694321 100644 --- a/esphome/components/socket/lwip_raw_tcp_impl.cpp +++ b/esphome/components/socket/lwip_raw_tcp_impl.cpp @@ -1203,7 +1203,7 @@ void LWIPRawUDPRecvImpl::recv_fn_(struct pbuf *p, const ip_addr_t *addr, u16_t p this->rx_count_++; #if defined(USE_ESP8266) || defined(USE_RP2040) - socket_wake(); + esphome::wake_loop_any_context(); #endif } @@ -1251,7 +1251,7 @@ std::unique_ptr socket_udp_recv(int domain, int protocol) { std::unique_ptr socket_listen(int domain, int type, int protocol) { if (type != SOCK_STREAM) { - ESP_LOGE(TAG, "Use socket_udp() for UDP sockets on this platform"); + ESP_LOGE(TAG, "Use socket_udp_recv() for UDP sockets on this platform"); errno = EPROTOTYPE; return nullptr; }