]> Joshua Wise's Git repositories - netwatch.git/blob - lwip/src/include/lwipopts.h
ec5a614460d04a4f7c01d701bee4f3a82220adb4
[netwatch.git] / lwip / src / include / lwipopts.h
1 #ifndef LWIPOPTS_H
2 #define LWIPOPTS_H
3
4 #define NO_SYS 1
5
6
7 #define LWIP_SOCKET     0
8 #define LWIP_NETCONN    0
9
10 #define LWIP_SNMP       0
11
12 #define LWIP_DHCP       1
13
14 /* For big ones... */
15 extern void _memcpy(void *dest, const void *src, int bytes);
16 #define MEMCPY(dst,src,len) _memcpy(dst,src,len)
17
18 /* Lots of tricks from http://lists.gnu.org/archive/html/lwip-users/2006-11/msg00007.html */
19
20 #define MEM_SIZE        (128*1024)
21 #define TCP_MSS         1460
22 #define TCP_WND         24000
23 #define TCP_SND_BUF     (16 * TCP_MSS)
24 #define TCP_SND_QUEUELEN 16
25
26 #define MEMP_NUM_PBUF   128
27 #define PBUF_POOL_SIZE  96
28
29 #endif
This page took 0.012777 seconds and 2 git commands to generate.