summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/ChangeLog.txt3
-rwxr-xr-xnuttx/ChangeLog4
2 files changed, 7 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index da315fc5b..53be3923a 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1115,3 +1115,6 @@
state of the IP setting is not something the application should be
aware of, it should only be concerned with whether or not the name
was resolved. From Brennan Ashtoni (2014-11-13).
+ * apps/nshlib/, apps/netutils, and apps/include/netutils: Misc
+ changes to support multiple networks with different link layers. For
+ example, ETHERNET + SLIP (2014-11-15).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 1e8b23d7a..ce187881e 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8985,3 +8985,7 @@
Use ETH_HDRLEN instead (2014-11-15).
* net/arp/: Remove use of NET_LL_HDRLEN from net/arp logic. Use
ETH_HDRLEN instead (2014-11-15).
+ * net/ and include/nuttx/net: All network logic will now handle
+ variable length link layer protocol headers within incoming packets.
+ This permits use of multiple network interfaces with differing data
+ links. For example, ETHERNET + SLIP (2014-11-15).