summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-06-05 16:13:50 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-06-05 16:13:50 +0000
commitd6e0fecec1f8b8bfa14784fa2a33f5f4da66148e (patch)
tree7f58b3685481214d1ccecd7080f0872fb5deec3b /nuttx/ChangeLog
parentab784567291b1925d616ea9b9d2577f42d2699a5 (diff)
downloadnuttx-d6e0fecec1f8b8bfa14784fa2a33f5f4da66148e.tar.gz
nuttx-d6e0fecec1f8b8bfa14784fa2a33f5f4da66148e.tar.bz2
nuttx-d6e0fecec1f8b8bfa14784fa2a33f5f4da66148e.zip
Fix a bug in recvfrom()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3670 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 6bfbedeef..f0d87e379 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1796,4 +1796,11 @@
testing of the FTP client shell.
* fd/fs_fdopen.c and net/net_checksd.c: Add support so that fdopen may
be used with socket descriptors.
+ * net/recvfrom.c: Fix an error found in receiving small files via FTP:
+ The small file is received a buffered in the readahead buffer, then the
+ socket is disconnected. When the app calls recvfrom, the socket is
+ already disconnected and the buffered data is stranded. Now, recvfrom
+ will continue to return success after the socket is disconnected until
+ the readahead buffer is drained.
+