set LWIP_RAW to 0 because we don't nee raw pcbs => speeds up input processing

This commit is contained in:
Stefan Lankes 2011-07-26 14:54:06 -07:00
parent ff2b9da103
commit 0d867265d9
2 changed files with 7 additions and 0 deletions

View file

@ -52,6 +52,7 @@
#include <lwip/sys.h>
#include <lwip/timers.h>
#include <lwip/inet_chksum.h>
#include <lwip/ip.h>
#if LWIP_SOCKET
#define PING_USE_SOCKETS 1

View file

@ -9,6 +9,12 @@
*/
#define NO_SYS 0
/**
* LWIP_RAW==1: Enable application layer to hook into the IP layer itself.
* LWIP_RAW==0: speeds up input processing
*/
#define LWIP_RAW 0
/**
* LWIP_SOCKET==1: Enable Socket API (require to use sockets.c)
*/