summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index f928eb02e..c880ef3e2 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -576,4 +576,7 @@
and not recv() is in-place when a TCP/IP packet is received, the packet is placed into
a read-ahead buffer. However, the old contents of the read-ahead buffer were not being
cleared and old data would contaminate the newly received buffer.
+ * Implemented support for connection backlog. The size of the backlog is specified by the
+ second argument of the standard listen() API. Hooks are provided to support poll()/select()
+ waiting for connections, with a subsequent call to accept() to use the backlogged connection.