9 typedef int uip_tcp_appstate_t
;
10 typedef int uip_udp_appstate_t
;
12 #define UIP_APPCALL TCPCallback
13 #define UIP_UDP_APPCALL TCPCallback
15 void UIP_APPCALL(void);
16 void UIP_UDP_APPCALL(void);
18 #define UIP_CONF_LLH_LEN 14
23 * This typedef defines the 8-bit type used throughout uIP.
32 * This typedef defines the 16-bit type used throughout uIP.
36 typedef uint16_t u16_t
;
41 * This typedef defines the dataype used for keeping statistics in
46 typedef unsigned short uip_stats_t
;
48 #define UIP_CONF_IPV6 0
49 #define UIP_ARCH_ADD32 0
50 #define UIP_ARCH_CHKSUM 0
53 * Maximum number of TCP connections.
57 #define UIP_CONF_MAX_CONNECTIONS 5
60 * Maximum number of listening TCP ports.
64 #define UIP_CONF_MAX_LISTENPORTS 1
71 #define UIP_CONF_BUFFER_SIZE 1100
77 #define UIP_CONF_BYTE_ORDER UIP_LITTLE_ENDIAN
84 #define UIP_CONF_LOGGING 0
87 * UDP support on or off
91 #define UIP_CONF_UDP 0
94 * UDP checksums on or off
98 #define UIP_CONF_UDP_CHECKSUMS 0
101 * uIP statistics on or off
105 #define UIP_CONF_STATISTICS 0
112 #define UIP_CONF_BROADCAST 0
115 * The maximum amount of concurrent UDP connections.
119 #define UIP_CONF_UDP_CONNS 1
121 //Include app configuration
122 #include "apps-conf.h"
124 #endif /* __UIP_CONF_H__ */