summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-19 20:05:55 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-19 20:05:55 +0000
commit077dfab8f45e3db119a3ac76ccd1685a9cac589a (patch)
treeb6c714ea9154719ba86dba6a47f454b490a6604a /nuttx/ChangeLog
parentd8c1d769c45dde09573ea6ba3f968491cc5e68b2 (diff)
downloadpx4-nuttx-077dfab8f45e3db119a3ac76ccd1685a9cac589a.tar.gz
px4-nuttx-077dfab8f45e3db119a3ac76ccd1685a9cac589a.tar.bz2
px4-nuttx-077dfab8f45e3db119a3ac76ccd1685a9cac589a.zip
Corrected a bug in the buffering of TCP data
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1289 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 631080479..f928eb02e 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -572,4 +572,8 @@
to refill the input buffer. The old behavior (read full blocks) might be useful in other
contexts, so it is still available within the driver as a configuration option.
* Implement poll() and select() support for TCP/IP sockets
+ * Fixed an important bug in the TCP/IP buffering logic. When TCP/IP read-ahead is enabled
+ 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.