You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2017/04/19 18:18:19 UTC

[23/30] incubator-mynewt-core git commit: net/ip; updates needed for LwIP 2.0.2

net/ip; updates needed for LwIP 2.0.2


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/54c29c66
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/54c29c66
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/54c29c66

Branch: refs/heads/master
Commit: 54c29c6625fedbebd5b9997acf8b9338147b3933
Parents: f52033e
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Fri Apr 14 17:36:26 2017 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Apr 14 17:36:26 2017 -0700

----------------------------------------------------------------------
 net/ip/include/lwipopts.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/54c29c66/net/ip/include/lwipopts.h
----------------------------------------------------------------------
diff --git a/net/ip/include/lwipopts.h b/net/ip/include/lwipopts.h
index 7382692..2110570 100644
--- a/net/ip/include/lwipopts.h
+++ b/net/ip/include/lwipopts.h
@@ -181,9 +181,9 @@ extern "C" {
 
 /* ---------- Statistics options ---------- */
 /* XXX hook into sys/stats */
-#define STATS                           0
+#define LWIP_STATS                           0
 
-#if STATS
+#if LWIP_STATS
 #define LINK_STATS                      1
 #define IP_STATS                        1
 #define ICMP_STATS                      1
@@ -196,6 +196,7 @@ extern "C" {
 #endif /* STATS */
 
 #define LWIP_PROVIDE_ERRNO 1
+#define LWIP_DONT_PROVIDE_BYTEORDER_FUNCTIONS 1
 #define ERRNO                     0
 
 #ifdef __cplusplus