15 extern void _memcpy(void *dest, const void *src, int bytes);
16 #define MEMCPY(dst,src,len) _memcpy(dst,src,len)
18 /* Lots of tricks from http://lists.gnu.org/archive/html/lwip-users/2006-11/msg00007.html */
20 #define MEM_SIZE (128*1024)
23 #define TCP_SND_BUF (16 * TCP_MSS)
24 #define TCP_SND_QUEUELEN 16
26 #define MEMP_NUM_PBUF 256
27 #define PBUF_POOL_SIZE 128
28 #define PBUF_POOL_BUFSIZE 512
31 #define LWIP_STATS_DISPLAY 1