summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-26 05:26:27 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-26 05:26:27 +0000
commitb1e43c09bda98ba3caf419e99de6639170ce309a (patch)
tree76b59e2bbd7c8cef1e90e1743984df2cddfc4ab3 /nuttx/ChangeLog
parent9ded5b25e4936008603ec842e3121e95a061a6b1 (diff)
downloadnuttx-b1e43c09bda98ba3caf419e99de6639170ce309a.tar.gz
nuttx-b1e43c09bda98ba3caf419e99de6639170ce309a.tar.bz2
nuttx-b1e43c09bda98ba3caf419e99de6639170ce309a.zip
Fix un-acked backlog coordinatin bug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3133 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index d08d9e8aa..113aef0b8 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1347,6 +1347,12 @@
fixed that is needed by all Cortex-M3 NuttX users.
* configs/olimex-lpc1766stk/thttpd - Add a THTTPD configuration for the
Olimex LPC2766-STK board.
+ * net/uip/uip_tcpappsend.c - Correct an important logic bug in some uIP state
+ data the is used to manage retransmissions. The uIP logic was incompatible
+ with the retransmission logic of net/send.c in one place. The final error
+ was that the final packet in a sequence of packets was too large! In the
+ THTTPD example, this would leave some garbage at the bottom of the display
+ (or worse). I don't know why I haven't see this bug before???