2 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
\r
3 * All rights reserved.
\r
5 * Redistribution and use in source and binary forms, with or without modification,
\r
6 * are permitted provided that the following conditions are met:
\r
8 * 1. Redistributions of source code must retain the above copyright notice,
\r
9 * this list of conditions and the following disclaimer.
\r
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
\r
11 * this list of conditions and the following disclaimer in the documentation
\r
12 * and/or other materials provided with the distribution.
\r
13 * 3. The name of the author may not be used to endorse or promote products
\r
14 * derived from this software without specific prior written permission.
\r
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
\r
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
\r
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
\r
19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
\r
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
\r
21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
\r
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
\r
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
\r
24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
\r
27 * This file is part of the lwIP TCP/IP stack.
\r
29 * Author: Adam Dunkels <adam@sics.se>
\r
30 * Modifications: Christian Walter <wolti@sil.at>
\r
32 #ifndef __LWIPOPTS_H__
\r
33 #define __LWIPOPTS_H__
\r
35 /* ------------------------ Generic options ------------------------------- */
\r
36 #undef LWIP_NOASSERT
\r
38 #define SYS_LIGHTWEIGHT_PROT 1
\r
39 #define TCPIP_THREAD_PRIO 3
\r
41 #define LWIP_DEBUG 1
\r
42 #define DBG_TYPES_ON ( DBG_LEVEL_WARNING | DBG_LEVEL_SEVERE | DBG_LEVEL_SERIOUS )
\r
43 #define FEC_DEBUG ( DBG_LEVEL_WARNING | DBG_ON )
\r
45 /* ------------------------ Memory options -------------------------------- */
\r
46 /* MEM_ALIGNMENT: should be set to the alignment of the CPU for which
\r
47 lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2
\r
48 byte alignment -> define MEM_ALIGNMENT to 2. */
\r
49 #define MEM_ALIGNMENT 4
\r
51 /* MEM_SIZE: the size of the heap memory. If the application will send
\r
52 a lot of data that needs to be copied, this should be set high. */
\r
53 #define MEM_SIZE 2000
\r
55 /* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application
\r
56 sends a lot of data out of ROM (or other static memory), this
\r
57 should be set high. */
\r
58 #define MEMP_NUM_PBUF 20
\r
59 /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
\r
60 per active UDP "connection". */
\r
61 #define MEMP_NUM_UDP_PCB 4
\r
62 /* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP
\r
64 #define MEMP_NUM_TCP_PCB 10
\r
65 /* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP
\r
67 #define MEMP_NUM_TCP_PCB_LISTEN 8
\r
68 /* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP
\r
70 #define MEMP_NUM_TCP_SEG 8
\r
71 /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active
\r
73 #define MEMP_NUM_SYS_TIMEOUT 3
\r
75 /* The following four are used only with the sequential API and can be
\r
76 set to 0 if the application only will use the raw API. */
\r
77 /* MEMP_NUM_NETBUF: the number of struct netbufs. */
\r
78 #define MEMP_NUM_NETBUF 4
\r
79 /* MEMP_NUM_NETCONN: the number of struct netconns. */
\r
80 #define MEMP_NUM_NETCONN 4
\r
81 /* MEMP_NUM_APIMSG: the number of struct api_msg, used for
\r
82 communication between the TCP/IP stack and the sequential
\r
84 #define MEMP_NUM_API_MSG 8
\r
85 /* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used
\r
86 for sequential API communication and incoming packets. Used in
\r
88 #define MEMP_NUM_TCPIP_MSG 8
\r
90 /* These two control is reclaimer functions should be compiled
\r
91 in. Should always be turned on (1). */
\r
92 #define MEM_RECLAIM 1
\r
93 #define MEMP_RECLAIM 1
\r
95 /* ---------- Pbuf options ---------- */
\r
96 /* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */
\r
97 #define PBUF_POOL_SIZE 16
\r
99 /* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */
\r
100 #define PBUF_POOL_BUFSIZE 512
\r
102 /* PBUF_LINK_HLEN: the number of bytes that should be allocated for a
\r
103 link level header. */
\r
104 #define PBUF_LINK_HLEN 16
\r
106 /* ------------------------ TCP options ----------------------------------- */
\r
108 #define TCP_TTL 255
\r
110 /* Controls if TCP should queue segments that arrive out of
\r
111 order. Define to 0 if your device is low on memory. */
\r
112 #define TCP_QUEUE_OOSEQ 1
\r
114 /* TCP Maximum segment size. */
\r
115 #define TCP_MSS 512
\r
117 /* TCP sender buffer space (bytes). */
\r
118 #define TCP_SND_BUF 512
\r
120 /* TCP sender buffer space (pbufs). This must be at least = 2 *
\r
121 TCP_SND_BUF/TCP_MSS for things to work. */
\r
122 #define TCP_SND_QUEUELEN 6 * TCP_SND_BUF/TCP_MSS
\r
124 /* TCP receive window. */
\r
125 #define TCP_WND 512
\r
127 /* Maximum number of retransmissions of data segments. */
\r
128 #define TCP_MAXRTX 12
\r
130 /* Maximum number of retransmissions of SYN segments. */
\r
131 #define TCP_SYNMAXRTX 4
\r
133 /* ------------------------ ARP options ----------------------------------- */
\r
134 #define ARP_TABLE_SIZE 10
\r
135 #define ARP_QUEUEING 1
\r
137 /* ------------------------ IP options ------------------------------------ */
\r
138 /* Define IP_FORWARD to 1 if you wish to have the ability to forward
\r
139 IP packets across network interfaces. If you are going to run lwIP
\r
140 on a device with only one network interface, define this to 0. */
\r
141 #define IP_FORWARD 1
\r
143 /* If defined to 1, IP options are allowed (but not parsed). If
\r
144 defined to 0, all packets with IP options are dropped. */
\r
145 #define IP_OPTIONS 1
\r
147 /* ------------------------ ICMP options ---------------------------------- */
\r
148 #define ICMP_TTL 255
\r
151 /* ------------------------ DHCP options ---------------------------------- */
\r
152 /* Define LWIP_DHCP to 1 if you want DHCP configuration of
\r
153 interfaces. DHCP is not implemented in lwIP 0.5.1, however, so
\r
154 turning this on does currently not work. */
\r
155 #define LWIP_DHCP 0
\r
157 /* 1 if you want to do an ARP check on the offered address
\r
159 #define DHCP_DOES_ARP_CHECK 1
\r
161 /* ------------------------ UDP options ----------------------------------- */
\r
163 #define UDP_TTL 255
\r
165 /* ------------------------ Statistics options ---------------------------- */
\r
169 #define LINK_STATS 1
\r
171 #define ICMP_STATS 1
\r
172 #define UDP_STATS 1
\r
173 #define TCP_STATS 1
\r
174 #define MEM_STATS 1
\r
175 #define MEMP_STATS 1
\r
176 #define PBUF_STATS 1
\r
177 #define SYS_STATS 1
\r
180 #define LWIP_PROVIDE_ERRNO 1
\r
182 #endif /* __LWIPOPTS_H__ */
\r