git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3140 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2010-11-27 23:28:26 +00:00
parent dcc9abe19b
commit 3bfff3bfc1

15
TODO
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