From 365f3fb651e81c504c4c81f040ba87a0a815a7ad Mon Sep 17 00:00:00 2001 From: sg Date: Fri, 9 Oct 2015 20:47:32 +0200 Subject: [PATCH] Make LWIP_RAW==0 the default, raw IP sockets/pcbs should not be too common to justify the increased codesize for default setups --- src/include/lwip/opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index 67a3440e..0e847125 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -756,7 +756,7 @@ * LWIP_RAW==1: Enable application layer to hook into the IP layer itself. */ #ifndef LWIP_RAW -#define LWIP_RAW 1 +#define LWIP_RAW 0 #endif /**