From 1047fee2bd1230d0d8d21eebccfc7394570712f4 Mon Sep 17 00:00:00 2001 From: jani Date: Tue, 28 Oct 2003 13:36:28 +0000 Subject: [PATCH] Add defaults for RAW_TTL and RAW_STATS --- src/include/lwip/opt.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index b09e042c..b6e70117 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -216,6 +216,12 @@ a lot of data that needs to be copied, this should be set high. */ #define ICMP_TTL 255 #endif +/* ---------- RAW options ---------- */ + +#ifndef RAW_TTL +#define RAW_TTL 255 +#endif + /* ---------- DHCP options ---------- */ #ifndef LWIP_DHCP @@ -380,6 +386,10 @@ a lot of data that needs to be copied, this should be set high. */ #define SYS_STATS 1 #endif +#ifndef RAW_STATS +#define RAW_STATS 0 +#endif + #else #define LINK_STATS 0 @@ -392,6 +402,7 @@ a lot of data that needs to be copied, this should be set high. */ #define MEMP_STATS 0 #define PBUF_STATS 0 #define SYS_STATS 0 +#define RAW_STATS 0 #endif /* LWIP_STATS */