9
0
Fork 0
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3140 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2010-11-27 23:28:26 +00:00
parent 060b3227e3
commit 12522d5cc8
1 changed files with 3 additions and 12 deletions

View File

@ -1,5 +1,5 @@
NuttX TODO List (Last updated October 1, 2010)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
NuttX TODO List (Last updated November 27, 2010)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(5) Task/Scheduler (sched/)
(1) On-demand paging (sched/)
@ -8,7 +8,7 @@ NuttX TODO List (Last updated October 1, 2010)
(1) pthreads (sched/)
(1) C++ Support
(5) Binary loaders (binfmt/)
(17) Network (net/, drivers/net)
(16) Network (net/, drivers/net)
(5) Network Utilities (netutils/)
(1) USB (drivers/usbdev)
(5) Libraries (lib/)
@ -211,15 +211,6 @@ o Network (net/, drivers/net)
Status: Open
Priority: Low
Description: Outgoing packets are dropped and overwritten by ARP packets
if the destination IP has not been mapped to a MAC. Could
improve send() performance by explicitly performing ARP before
sending the packet (or by enabling CONFIG_NET_ARP_IPIN logic.
This could, however have negative impacts on busy networks and
could require a large value for CONFIG_NET_ARPTAB_SIZE).
Status: Open
Priority: Medium
Description: At present, there cannot be two concurrent active TCP send
operations in progress using the same socket. This is because
the uIP ACK logic will support only one transfer at a time. The