9 #define UIP_CONF_LLH_LEN 14
14 * This typedef defines the 8-bit type used throughout uIP.
23 * This typedef defines the 16-bit type used throughout uIP.
27 typedef uint16_t u16_t
;
32 * This typedef defines the dataype used for keeping statistics in
37 typedef unsigned short uip_stats_t
;
39 #define UIP_CONF_IPV6 0
40 #define UIP_ARCH_ADD32 0
41 #define UIP_ARCH_CHKSUM 0
44 * Maximum number of TCP connections.
48 #define UIP_CONF_MAX_CONNECTIONS 5
51 * Maximum number of listening TCP ports.
55 #define UIP_CONF_MAX_LISTENPORTS 1
62 #define UIP_CONF_BUFFER_SIZE 1500
68 #define UIP_CONF_BYTE_ORDER UIP_LITTLE_ENDIAN
75 #define UIP_CONF_LOGGING 0
78 * UDP support on or off
82 #if defined(ENABLE_DHCP)
83 #define UIP_CONF_UDP 1
85 #define UIP_CONF_UDP 0
89 * UDP checksums on or off
93 #define UIP_CONF_UDP_CHECKSUMS 0
96 * uIP statistics on or off
100 #define UIP_CONF_STATISTICS 0
107 #define UIP_CONF_BROADCAST 0
110 * The maximum amount of concurrent UDP connections.
114 #define UIP_CONF_UDP_CONNS 1
117 * Host identifier define (e.g. MAC address). If defined as 0,
118 * this will use the internal MAC ethernet address define.
120 #define UIP_NEIGHBOR_CONF_ADDRTYPE 0
122 //Include app configuration
123 #include "apps-conf.h"
125 #endif /* __UIP_CONF_H__ */