wengzhe commented on issue #14531: URL: https://github.com/apache/nuttx/issues/14531#issuecomment-2444764905
@SmartIotMaker Glad to see your problem solved. The "backlog" is not a "log", you may see it as the second parameter of `listen` on a socket, which "[limit the number of outstanding connections in the socket's listen queue](https://pubs.opengroup.org/onlinepubs/9699919799/functions/listen.html)". Without `CONFIG_NET_TCPBACKLOG` enabled, we won't have a listen queue (which means `backlog=0`), so we cannot accept clients asynchronously, which causes your problem. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
