Make LWIP_RAW==0 the default, raw IP sockets/pcbs should not be too common to justify the increased codesize for default setups

This commit is contained in:
sg 2015-10-09 20:47:32 +02:00
parent a7ee681515
commit 365f3fb651

View File

@ -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
/**