summaryrefslogtreecommitdiff
path: root/nuttx/TODO
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-27 23:28:26 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-27 23:28:26 +0000
commit9bd21d7b274c24ac45128b104b676be295e01877 (patch)
treed21a4a57c2cfeba3b368b827991a150fa382eb4f /nuttx/TODO
parent7f5b9991bf8580a9c155dfd42423430c11c62fd8 (diff)
downloadnuttx-9bd21d7b274c24ac45128b104b676be295e01877.tar.gz
nuttx-9bd21d7b274c24ac45128b104b676be295e01877.tar.bz2
nuttx-9bd21d7b274c24ac45128b104b676be295e01877.zip
update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3140 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/TODO')
-rw-r--r--nuttx/TODO15
1 files changed, 3 insertions, 12 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index 99e5600d9..6658aecd5 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -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