7 * \name Project-specific configuration options
10 * uIP has a number of configuration options that can be overridden
11 * for each project. These are kept in a project-specific uip-conf.h
12 * file and all configuration names have the prefix UIP_CONF.
16 * Copyright (c) 2006, Swedish Institute of Computer Science.
17 * All rights reserved.
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 * 3. Neither the name of the Institute nor the names of its contributors
28 * may be used to endorse or promote products derived from this software
29 * without specific prior written permission.
31 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
32 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
35 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
39 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 * This file is part of the uIP TCP/IP stack
45 * $Id: uip-conf.h,v 1.6 2006/06/12 08:00:31 adam Exp $
50 * An example uIP configuration file
52 * Adam Dunkels <adam@sics.se>
55 #ifndef __UIP_CONF_H__
56 #define __UIP_CONF_H__
58 #define UIP_CONF_EXTERNAL_BUFFER
59 #define UIP_CONF_PROCESS_HTTPD_FORMS 1
64 * This typedef defines the 8-bit type used throughout uIP.
68 typedef unsigned char u8_t;
73 * This typedef defines the 16-bit type used throughout uIP.
77 typedef unsigned short u16_t;
79 typedef unsigned long u32_t;
84 * This typedef defines the dataype used for keeping statistics in
89 typedef unsigned short uip_stats_t;
92 * Maximum number of TCP connections.
96 #define UIP_CONF_MAX_CONNECTIONS 40
99 * Maximum number of listening TCP ports.
103 #define UIP_CONF_MAX_LISTENPORTS 40
110 #define UIP_CONF_BUFFER_SIZE 1480
117 #define UIP_CONF_BYTE_ORDER LITTLE_ENDIAN
124 #define UIP_CONF_LOGGING 0
127 * UDP support on or off
131 #define UIP_CONF_UDP 0
134 * UDP checksums on or off
138 #define UIP_CONF_UDP_CHECKSUMS 1
141 * uIP statistics on or off
145 #define UIP_CONF_STATISTICS 1
147 /* Here we include the header file for the application(s) we use in
149 /*#include "smtp.h"*/
150 /*#include "hello-world.h"*/
151 /*#include "telnetd.h"*/
152 #include "webserver.h"
153 /*#include "dhcpc.h"*/
154 /*#include "resolv.h"*/
155 /*#include "webclient.h"*/
158 #endif /* __UIP_CONF_H__ */