]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ColdFire_MCF52233_Eclipse/RTOSDemo/webserver/uip-conf.h
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / ColdFire_MCF52233_Eclipse / RTOSDemo / 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 /**\r
61  * 8 bit datatype\r
62  *\r
63  * This typedef defines the 8-bit type used throughout uIP.\r
64  *\r
65  * \hideinitializer\r
66  */\r
67 typedef uint8_t u8_t;\r
68 \r
69 /**\r
70  * 16 bit datatype\r
71  *\r
72  * This typedef defines the 16-bit type used throughout uIP.\r
73  *\r
74  * \hideinitializer\r
75  */\r
76 typedef uint16_t u16_t;\r
77 \r
78 /**\r
79  * Statistics datatype\r
80  *\r
81  * This typedef defines the dataype used for keeping statistics in\r
82  * uIP.\r
83  *\r
84  * \hideinitializer\r
85  */\r
86 typedef unsigned short uip_stats_t;\r
87 \r
88 /**\r
89  * Maximum number of TCP connections.\r
90  *\r
91  * \hideinitializer\r
92  */\r
93 #define UIP_CONF_MAX_CONNECTIONS 30\r
94 \r
95 /**\r
96  * Maximum number of listening TCP ports.\r
97  *\r
98  * \hideinitializer\r
99  */\r
100 #define UIP_CONF_MAX_LISTENPORTS 5\r
101 \r
102 /**\r
103  * uIP buffer size.\r
104  *\r
105  * \hideinitializer\r
106  */\r
107 #define UIP_CONF_BUFFER_SIZE     1500\r
108 \r
109 /**\r
110  * CPU byte order.\r
111  *\r
112  * \hideinitializer\r
113  */\r
114 #define UIP_CONF_BYTE_ORDER      UIP_BIG_ENDIAN\r
115 \r
116 /**\r
117  * Logging on or off\r
118  *\r
119  * \hideinitializer\r
120  */\r
121 #define UIP_CONF_LOGGING         0\r
122 \r
123 /**\r
124  * UDP support on or off\r
125  *\r
126  * \hideinitializer\r
127  */\r
128 #define UIP_CONF_UDP             0\r
129 \r
130 /**\r
131  * UDP checksums on or off\r
132  *\r
133  * \hideinitializer\r
134  */\r
135 #define UIP_CONF_UDP_CHECKSUMS   1\r
136 \r
137 /**\r
138  * uIP statistics on or off\r
139  *\r
140  * \hideinitializer\r
141  */\r
142 #define UIP_CONF_STATISTICS      1\r
143 \r
144 /* Here we include the header file for the application(s) we use in\r
145    our project. */\r
146 /*#include "smtp.h"*/\r
147 /*#include "hello-world.h"*/\r
148 /*#include "telnetd.h"*/\r
149 #include "webserver.h"\r
150 /*#include "dhcpc.h"*/\r
151 /*#include "resolv.h"*/\r
152 /*#include "webclient.h"*/\r
153 \r
154 #define UIP_CONF_EXTERNAL_BUFFER\r
155 \r
156 \r
157 #define FRAME_MULTIPLE                  1\r
158 \r
159 #endif /* __UIP_CONF_H__ */\r
160 \r
161 /** @} */\r
162 /** @} */\r