summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-23 19:38:10 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-23 19:38:10 -0600
commit83125b53f24bb60c2076487ca1424af9b0de87da (patch)
tree8fce55f6e5a5816914218278195b346bf8c56083 /nuttx/ChangeLog
parent9de1aa22302e1eae4e094794266ab83b5afb79f1 (diff)
downloadnuttx-83125b53f24bb60c2076487ca1424af9b0de87da.tar.gz
nuttx-83125b53f24bb60c2076487ca1424af9b0de87da.tar.bz2
nuttx-83125b53f24bb60c2076487ca1424af9b0de87da.zip
Update Changelog
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog11
1 files changed, 10 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 2f2671c98..f774785b2 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -7475,4 +7475,13 @@
* arch/arm/src/lpc17xx and configs/lpcexpresso-lpc1768: Added support
for the lpcxpresso's rtc handler, adc, dac, timers, pwm and mcpwm
drivers. From Max (himax) (2014-6-23).
-
+ * net/tcp/Kconfig: Cannot enable bother TCP write buffering AND raw
+ packet sockets. This should not logically be the case, but is because
+ the implementations are presently too coupled. The logic packet
+ socket logic in net/net_send_unbuffered.c needs to be broken out into
+ a separate file so that write buffered TCP and packet socket transfers
+ can co-exist (2014-6-23).
+ * net/uip/uip_pktsend.c: Move the logic that copies data into the
+ device buffer from net/net_send_unbuffered.c to net/uip/uip_pktsend.c.
+ This makes the packet socket design more consistent with TCP and UDP
+ (2014-6-23).