1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-17 09:13:45 +01:00
This commit is contained in:
J. Nick Koston
2025-10-10 20:01:16 -10:00
parent 8a4bd0f21c
commit 3f49a61b03

View File

@@ -561,7 +561,7 @@ class LWIPRawListenImpl : public LWIPRawImpl {
LWIP_LOG("init(%p)", pcb_);
tcp_arg(pcb_, this);
tcp_accept(pcb_, LWIPRawListenImpl::s_accept_fn);
tcp_err(pcb_, LWIPRawListenImpl::s_err_fn);
tcp_err(pcb_, LWIPRawImpl::s_err_fn); // Use base class error handler
}
std::unique_ptr<Socket> accept(struct sockaddr *addr, socklen_t *addrlen) override {