]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/webserver/uip-conf.h
commit 9f316c246baafa15c542a5aea81a94f26e3d6507
[freertos] / FreeRTOS / Demo / CORTEX_LPC1768_GCC_Rowley / webserver / uip-conf.h
1 /**\r
2  * \addtogroup uipopt\r
3  * @{\r
4  */\r
5 \r
6 /**\r
7  * \name Project-specific configuration options\r
8  * @{\r
9  *\r
10  * uIP has a number of configuration options that can be overridden\r
11  * for each project. These are kept in a project-specific uip-conf.h\r
12  * file and all configuration names have the prefix UIP_CONF.\r
13  */\r
14 \r
15 /*\r
16  * Copyright (c) 2006, Swedish Institute of Computer Science.\r
17  * All rights reserved.\r
18  *\r
19  * Redistribution and use in source and binary forms, with or without\r
20  * modification, are permitted provided that the following conditions\r
21  * are met:\r
22  * 1. Redistributions of source code must retain the above copyright\r
23  *    notice, this list of conditions and the following disclaimer.\r
24  * 2. Redistributions in binary form must reproduce the above copyright\r
25  *    notice, this list of conditions and the following disclaimer in the\r
26  *    documentation and/or other materials provided with the distribution.\r
27  * 3. Neither the name of the Institute nor the names of its contributors\r
28  *    may be used to endorse or promote products derived from this software\r
29  *    without specific prior written permission.\r
30  *\r
31  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND\r
32  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
33  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
34  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE\r
35  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
36  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
37  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
38  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
39  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
40  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
41  * SUCH DAMAGE.\r
42  *\r
43  * This file is part of the uIP TCP/IP stack\r
44  *\r
45  * $Id: uip-conf.h,v 1.6 2006/06/12 08:00:31 adam Exp $\r
46  */\r
47 \r
48 /**\r
49  * \file\r
50  *         An example uIP configuration file\r
51  * \author\r
52  *         Adam Dunkels <adam@sics.se>\r
53  */\r
54 \r
55 #ifndef __UIP_CONF_H__\r
56 #define __UIP_CONF_H__\r
57 \r
58 #include <stdint.h>\r
59 \r
60 #define UIP_CONF_EXTERNAL_BUFFER\r
61 \r
62 /**\r
63  * 8 bit datatype\r
64  *\r
65  * This typedef defines the 8-bit type used throughout uIP.\r
66  *\r
67  * \hideinitializer\r
68  */\r
69 typedef uint8_t u8_t;\r
70 \r
71 /**\r
72  * 16 bit datatype\r
73  *\r
74  * This typedef defines the 16-bit type used throughout uIP.\r
75  *\r
76  * \hideinitializer\r
77  */\r
78 typedef uint16_t u16_t;\r
79 \r
80 /**\r
81  * Statistics datatype\r
82  *\r
83  * This typedef defines the dataype used for keeping statistics in\r
84  * uIP.\r
85  *\r
86  * \hideinitializer\r
87  */\r
88 typedef unsigned short uip_stats_t;\r
89 \r
90 /**\r
91  * Maximum number of TCP connections.\r
92  *\r
93  * \hideinitializer\r
94  */\r
95 #define UIP_CONF_MAX_CONNECTIONS 40\r
96 \r
97 /**\r
98  * Maximum number of listening TCP ports.\r
99  *\r
100  * \hideinitializer\r
101  */\r
102 #define UIP_CONF_MAX_LISTENPORTS 40\r
103 \r
104 /**\r
105  * uIP buffer size.\r
106  *\r
107  * \hideinitializer\r
108  */\r
109 #define UIP_CONF_BUFFER_SIZE     1480\r
110 \r
111 /**\r
112  * CPU byte order.\r
113  *\r
114  * \hideinitializer\r
115  */\r
116 #define UIP_CONF_BYTE_ORDER      LITTLE_ENDIAN\r
117 \r
118 /**\r
119  * Logging on or off\r
120  *\r
121  * \hideinitializer\r
122  */\r
123 #define UIP_CONF_LOGGING         0\r
124 \r
125 /**\r
126  * UDP support on or off\r
127  *\r
128  * \hideinitializer\r
129  */\r
130 #define UIP_CONF_UDP             0\r
131 \r
132 /**\r
133  * UDP checksums on or off\r
134  *\r
135  * \hideinitializer\r
136  */\r
137 #define UIP_CONF_UDP_CHECKSUMS   1\r
138 \r
139 /**\r
140  * uIP statistics on or off\r
141  *\r
142  * \hideinitializer\r
143  */\r
144 #define UIP_CONF_STATISTICS      1\r
145 \r
146 /* Here we include the header file for the application(s) we use in\r
147    our project. */\r
148 /*#include "smtp.h"*/\r
149 /*#include "hello-world.h"*/\r
150 /*#include "telnetd.h"*/\r
151 #include "webserver.h"\r
152 /*#include "dhcpc.h"*/\r
153 /*#include "resolv.h"*/\r
154 /*#include "webclient.h"*/\r
155 \r
156 #endif /* __UIP_CONF_H__ */\r
157 \r
158 /** @} */\r
159 /** @} */\r