-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Closed
Description
Please limit the _unclaimed chain as listen backlog (http://man7.org/linux/man-pages/man2/listen.2.html)
Arduino/libraries/ESP8266WiFi/src/WiFiServer.cpp
Lines 164 to 171 in cd05bae
long WiFiServer::_accept(tcp_pcb* apcb, long err) { | |
(void) err; | |
DEBUGV("WS:ac\r\n"); | |
ClientContext* client = new ClientContext(apcb, &WiFiServer::_s_discard, this); | |
_unclaimed = slist_append_tail(_unclaimed, client); | |
tcp_accepted(_pcb); | |
return ERR_OK; | |
} |