From 63b6d3bde3f47ad95ccc57037925dacfdf81cc3d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 5 Oct 2013 15:42:20 -0600 Subject: [PATCH] Add NSH addroute and delroute commands --- drivers/Kconfig | 2 -- net/Kconfig | 3 +-- net/net_allocroute.c | 1 + 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/Kconfig b/drivers/Kconfig index 9923f1ca7b..2f022b8d5a 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -440,5 +440,3 @@ endif comment "System Logging Device Options" source drivers/syslog/Kconfig - - diff --git a/net/Kconfig b/net/Kconfig index d3e7b3b729..719f837d03 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -68,8 +68,7 @@ config NET_SOCKOPTS config NET_BUFSIZE int "Network packet size" - default 562 if !NET_TCP && NET_UDP && !NET_SLIP - default 420 if NET_TCP && !NET_UDP && !NET_SLIP + default 562 if !NET_SLIP default 296 if NET_SLIP ---help--- uIP buffer size. Default: 562 diff --git a/net/net_allocroute.c b/net/net_allocroute.c index eaa94eee75..a13b81d6ea 100644 --- a/net/net_allocroute.c +++ b/net/net_allocroute.c @@ -41,6 +41,7 @@ #include #include +#include #include