summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-10-05 13:16:18 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-10-05 13:16:18 -0600
commite2f7a1a610753465c2f9f47054ce9365cd131289 (patch)
treef5f316db87c490f053f74d3232adec3736f74276 /nuttx/ChangeLog
parent572252ef94d174774b2455c45657c8255bdf01f0 (diff)
downloadnuttx-e2f7a1a610753465c2f9f47054ce9365cd131289.tar.gz
nuttx-e2f7a1a610753465c2f9f47054ce9365cd131289.tar.bz2
nuttx-e2f7a1a610753465c2f9f47054ce9365cd131289.zip
netdev_findbyaddr() will not use a routing table if one is available. It will also make a better decision in the case there there is no routing table but only a single network interface.
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 d410ca807..01b8965ee 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -5702,4 +5702,10 @@
touschscreen drive is basically functional) (2013-10-3)
* arch/arm/src/sama5/chip/sam_lcdc.h: Add SAMA5 LCD register
definition header file (2013-10-4).
+ * net/netdev_findbyaddr.c: Now (1) uses the routing table
+ if available to look up the router to get to a remote network,
+ and (2) if there is only a single network device and no
+ route, then it will simply return that single device. The
+ ARP logic will use the default router address associated with
+ the interface in this case (2013-10-5).