diff --git a/examples/er-rest-example/project-conf.h b/examples/er-rest-example/project-conf.h index 3e47076c3..70116dba1 100644 --- a/examples/er-rest-example/project-conf.h +++ b/examples/er-rest-example/project-conf.h @@ -75,8 +75,8 @@ /* Save some memory for the sky platform. */ #undef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 10 -#undef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 10 +#undef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 10 /* Reduce 802.15.4 frame queue to save RAM. */ #undef QUEUEBUF_CONF_NUM diff --git a/examples/ipv6/json-ws/project-conf.h b/examples/ipv6/json-ws/project-conf.h index db9b6aefc..a62582357 100644 --- a/examples/ipv6/json-ws/project-conf.h +++ b/examples/ipv6/json-ws/project-conf.h @@ -58,8 +58,8 @@ #undef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 7 -#undef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 7 +#undef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 7 #undef UIP_CONF_BUFFER_SIZE #define UIP_CONF_BUFFER_SIZE 140 diff --git a/examples/udp-stream/project-conf.h b/examples/udp-stream/project-conf.h index f562287f5..605772c00 100644 --- a/examples/udp-stream/project-conf.h +++ b/examples/udp-stream/project-conf.h @@ -35,8 +35,8 @@ #define UIP_CONF_TCP 0 #undef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 8 -#undef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 8 +#undef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 8 /* The total number of queuebuf */ #undef QUEUEBUF_CONF_NUM diff --git a/platform/avr-atmega128rfa1/contiki-conf.h b/platform/avr-atmega128rfa1/contiki-conf.h index aeec6959a..34111490f 100644 --- a/platform/avr-atmega128rfa1/contiki-conf.h +++ b/platform/avr-atmega128rfa1/contiki-conf.h @@ -224,7 +224,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 20 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 20 +#define UIP_CONF_MAX_ROUTES 20 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 @@ -269,7 +269,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 20 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 4 +#define UIP_CONF_MAX_ROUTES 4 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 @@ -305,7 +305,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 4 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 4 +#define UIP_CONF_MAX_ROUTES 4 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 diff --git a/platform/avr-raven/contiki-conf.h b/platform/avr-raven/contiki-conf.h index 733b3cacb..7641fc491 100644 --- a/platform/avr-raven/contiki-conf.h +++ b/platform/avr-raven/contiki-conf.h @@ -235,7 +235,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 20 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 20 +#define UIP_CONF_MAX_ROUTES 20 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 @@ -278,7 +278,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 10 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 2 -#define UIP_CONF_DS6_ROUTE_NBU 4 +#define UIP_CONF_MAX_ROUTES 4 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 @@ -311,7 +311,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 4 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 4 +#define UIP_CONF_MAX_ROUTES 4 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 diff --git a/platform/avr-ravenusb/contiki-conf.h b/platform/avr-ravenusb/contiki-conf.h index cef41e176..788677614 100644 --- a/platform/avr-ravenusb/contiki-conf.h +++ b/platform/avr-ravenusb/contiki-conf.h @@ -229,7 +229,7 @@ extern void mac_log_802_15_4_rx(const uint8_t* buffer, size_t total_len); #define UIP_CONF_DS6_NBR_NBU 2 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 2 +#define UIP_CONF_MAX_ROUTES 2 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 @@ -356,8 +356,8 @@ typedef unsigned short uip_stats_t; #define QUEUEBUF_CONF_NUM 8 #undef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 5 -#undef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 5 +#undef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 5 #else #error Network configuration not specified! @@ -404,7 +404,7 @@ typedef unsigned short uip_stats_t; #define RPL_CONF_STATS 0 #define UIP_CONF_BUFFER_SIZE 1300 //#define UIP_CONF_DS6_NBR_NBU 12 -//#define UIP_CONF_DS6_ROUTE_NBU 12 +//#define UIP_CONF_MAX_ROUTES 12 #ifdef RPL_BORDER_ROUTER #undef UIP_FALLBACK_INTERFACE @@ -442,8 +442,8 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_RECEIVE_WINDOW 48 #undef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 5 -#undef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 5 +#undef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 5 #undef UIP_CONF_MAX_CONNECTIONS #define UIP_CONF_MAX_CONNECTIONS 2 #endif diff --git a/platform/cc2530dk/contiki-conf.h b/platform/cc2530dk/contiki-conf.h index 0299c0cf4..630336380 100644 --- a/platform/cc2530dk/contiki-conf.h +++ b/platform/cc2530dk/contiki-conf.h @@ -222,8 +222,8 @@ #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 4 /* Handle n Neighbors */ #endif -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 4 /* Handle n Routes */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 4 /* Handle n Routes */ #endif /* uIP */ diff --git a/platform/cooja/contiki-conf.h b/platform/cooja/contiki-conf.h index 89996ea82..4abb59a71 100644 --- a/platform/cooja/contiki-conf.h +++ b/platform/cooja/contiki-conf.h @@ -126,9 +126,9 @@ #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 300 #endif /* UIP_CONF_DS6_NBR_NBU */ -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 300 -#endif /* UIP_CONF_DS6_ROUTE_NBU */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 300 +#endif /* UIP_CONF_MAX_ROUTES */ #define TCPIP_CONF_ANNOTATE_TRANSMISSIONS 1 diff --git a/platform/econotag/contiki-conf.h b/platform/econotag/contiki-conf.h index 11bf24221..9553ac437 100644 --- a/platform/econotag/contiki-conf.h +++ b/platform/econotag/contiki-conf.h @@ -180,7 +180,7 @@ #define UIP_CONF_IPV6_RPL 1 #define UIP_CONF_DS6_NBR_NBU 30 -#define UIP_CONF_DS6_ROUTE_NBU 30 +#define UIP_CONF_MAX_ROUTES 30 #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/exp5438/contiki-conf.h b/platform/exp5438/contiki-conf.h index 09061e817..e968df31d 100644 --- a/platform/exp5438/contiki-conf.h +++ b/platform/exp5438/contiki-conf.h @@ -140,9 +140,9 @@ #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 30 #endif /* UIP_CONF_DS6_NBR_NBU */ -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 30 -#endif /* UIP_CONF_DS6_ROUTE_NBU */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 30 +#endif /* UIP_CONF_MAX_ROUTES */ #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/iris/contiki-conf.h b/platform/iris/contiki-conf.h index 1c8c48a7f..2651b6ea9 100644 --- a/platform/iris/contiki-conf.h +++ b/platform/iris/contiki-conf.h @@ -114,7 +114,7 @@ /* configure number of neighbors and routes */ #define UIP_CONF_DS6_NBR_NBU 5 -#define UIP_CONF_DS6_ROUTE_NBU 5 +#define UIP_CONF_MAX_ROUTES 5 #define RPL_CONF_MAX_PARENTS 4 #define NEIGHBOR_CONF_MAX_NEIGHBORS 8 diff --git a/platform/mbxxx/contiki-conf.h b/platform/mbxxx/contiki-conf.h index f830b87c4..a9edf3fb0 100644 --- a/platform/mbxxx/contiki-conf.h +++ b/platform/mbxxx/contiki-conf.h @@ -100,7 +100,7 @@ #define QUEUEBUF_CONF_NUM 2 #define QUEUEBUF_CONF_REF_NUM 0 #define UIP_CONF_DS6_NBR_NBU 4 -#define UIP_CONF_DS6_ROUTE_NBU 4 +#define UIP_CONF_MAX_ROUTES 4 #define RPL_CONF_MAX_PARENTS_PER_DAG 4 #define RPL_CONF_MAX_INSTANCES 1 #define RPL_CONF_MAX_DAG_PER_INSTANCE 1 diff --git a/platform/micaz/contiki-conf.h b/platform/micaz/contiki-conf.h index 7547af918..437674498 100644 --- a/platform/micaz/contiki-conf.h +++ b/platform/micaz/contiki-conf.h @@ -119,7 +119,7 @@ /* configure number of neighbors and routes */ #define UIP_CONF_DS6_NBR_NBU 5 -#define UIP_CONF_DS6_ROUTE_NBU 5 +#define UIP_CONF_MAX_ROUTES 5 #define RPL_CONF_MAX_PARENTS 4 #define NEIGHBOR_CONF_MAX_NEIGHBORS 8 diff --git a/platform/minimal-net/contiki-conf.h b/platform/minimal-net/contiki-conf.h index 89b3f517a..a4d7f65d4 100644 --- a/platform/minimal-net/contiki-conf.h +++ b/platform/minimal-net/contiki-conf.h @@ -161,7 +161,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 100 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 5 -#define UIP_CONF_DS6_ROUTE_NBU 100 +#define UIP_CONF_MAX_ROUTES 100 #define UIP_CONF_DS6_ADDR_NBU 10 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 diff --git a/platform/native/contiki-conf.h b/platform/native/contiki-conf.h index d916350d5..0183e6f7f 100644 --- a/platform/native/contiki-conf.h +++ b/platform/native/contiki-conf.h @@ -130,9 +130,9 @@ typedef unsigned short uip_stats_t; #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 30 #endif /* UIP_CONF_DS6_NBR_NBU */ -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 30 -#endif /* UIP_CONF_DS6_ROUTE_NBU */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 30 +#endif /* UIP_CONF_MAX_ROUTES */ #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/redbee-dev/contiki-conf.h b/platform/redbee-dev/contiki-conf.h index 1544a5cf6..8110ec5e2 100644 --- a/platform/redbee-dev/contiki-conf.h +++ b/platform/redbee-dev/contiki-conf.h @@ -179,7 +179,7 @@ typedef unsigned long rtimer_clock_t; #define UIP_CONF_IPV6_RPL 1 #define UIP_CONF_DS6_NBR_NBU 30 -#define UIP_CONF_DS6_ROUTE_NBU 30 +#define UIP_CONF_MAX_ROUTES 30 #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/redbee-econotag/contiki-conf.h b/platform/redbee-econotag/contiki-conf.h index ae1172aa0..b7c125c51 100644 --- a/platform/redbee-econotag/contiki-conf.h +++ b/platform/redbee-econotag/contiki-conf.h @@ -197,7 +197,7 @@ typedef unsigned long rtimer_clock_t; #define UIP_CONF_IPV6_RPL 1 #define UIP_CONF_DS6_NBR_NBU 30 -#define UIP_CONF_DS6_ROUTE_NBU 30 +#define UIP_CONF_MAX_ROUTES 30 #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/sensinode/contiki-conf.h b/platform/sensinode/contiki-conf.h index 440d65948..9662b5ff3 100644 --- a/platform/sensinode/contiki-conf.h +++ b/platform/sensinode/contiki-conf.h @@ -228,8 +228,8 @@ #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 4 /* Handle n Neighbors */ #endif -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 4 /* Handle n Routes */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 4 /* Handle n Routes */ #endif /* uIP */ diff --git a/platform/sky/contiki-conf.h b/platform/sky/contiki-conf.h index 3b3127832..753cc0063 100644 --- a/platform/sky/contiki-conf.h +++ b/platform/sky/contiki-conf.h @@ -140,9 +140,9 @@ #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 20 #endif /* UIP_CONF_DS6_NBR_NBU */ -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 20 -#endif /* UIP_CONF_DS6_ROUTE_NBU */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 20 +#endif /* UIP_CONF_MAX_ROUTES */ #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/stk500/contiki-conf.h b/platform/stk500/contiki-conf.h index 169aa6c9c..aac315295 100644 --- a/platform/stk500/contiki-conf.h +++ b/platform/stk500/contiki-conf.h @@ -48,7 +48,7 @@ void clock_adjust_ticks(clock_time_t howmany); #define UIP_CONF_DS6_NBR_NBU 20 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 3 -#define UIP_CONF_DS6_ROUTE_NBU 20 +#define UIP_CONF_MAX_ROUTES 20 #define UIP_CONF_DS6_ADDR_NBU 3 #define UIP_CONF_DS6_MADDR_NBU 0 #define UIP_CONF_DS6_AADDR_NBU 0 diff --git a/platform/win32/contiki-conf.h b/platform/win32/contiki-conf.h index 1d483945c..93efaf069 100644 --- a/platform/win32/contiki-conf.h +++ b/platform/win32/contiki-conf.h @@ -62,7 +62,7 @@ typedef unsigned short uip_stats_t; #define UIP_CONF_DS6_NBR_NBU 100 #define UIP_CONF_DS6_DEFRT_NBU 2 #define UIP_CONF_DS6_PREFIX_NBU 5 -#define UIP_CONF_DS6_ROUTE_NBU 100 +#define UIP_CONF_MAX_ROUTES 100 #define UIP_CONF_DS6_ADDR_NBU 10 #define UIP_CONF_DS6_MADDR_NBU 0 //VC++ does not allow zero length arrays #define UIP_CONF_DS6_AADDR_NBU 0 //inside a struct diff --git a/platform/wismote/contiki-conf.h b/platform/wismote/contiki-conf.h index b8d4a6fda..95568d27a 100644 --- a/platform/wismote/contiki-conf.h +++ b/platform/wismote/contiki-conf.h @@ -136,9 +136,9 @@ #ifndef UIP_CONF_DS6_NBR_NBU #define UIP_CONF_DS6_NBR_NBU 30 #endif /* UIP_CONF_DS6_NBR_NBU */ -#ifndef UIP_CONF_DS6_ROUTE_NBU -#define UIP_CONF_DS6_ROUTE_NBU 30 -#endif /* UIP_CONF_DS6_ROUTE_NBU */ +#ifndef UIP_CONF_MAX_ROUTES +#define UIP_CONF_MAX_ROUTES 30 +#endif /* UIP_CONF_MAX_ROUTES */ #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/z1/contiki-conf.h b/platform/z1/contiki-conf.h index 5258090ad..383bd12c6 100644 --- a/platform/z1/contiki-conf.h +++ b/platform/z1/contiki-conf.h @@ -136,7 +136,7 @@ /* Handle 10 neighbors */ #define UIP_CONF_DS6_NBR_NBU 15 /* Handle 10 routes */ -#define UIP_CONF_DS6_ROUTE_NBU 15 +#define UIP_CONF_MAX_ROUTES 15 #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000 diff --git a/platform/z1sp/contiki-conf.h b/platform/z1sp/contiki-conf.h index 20e8db9f1..93d56474c 100644 --- a/platform/z1sp/contiki-conf.h +++ b/platform/z1sp/contiki-conf.h @@ -135,7 +135,7 @@ /* Handle 10 neighbors */ #define UIP_CONF_DS6_NBR_NBU 15 /* Handle 10 routes */ -#define UIP_CONF_DS6_ROUTE_NBU 15 +#define UIP_CONF_MAX_ROUTES 15 #define UIP_CONF_ND6_SEND_RA 0 #define UIP_CONF_ND6_REACHABLE_TIME 600000