replaced hardcoded value with constant for route lifetime

This commit is contained in:
joxe 2010-05-10 11:16:35 +00:00
parent c0c7cea3ce
commit 058ef029e4

View File

@ -32,7 +32,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* $Id: rpl-dag.c,v 1.4 2010/05/07 13:51:34 fros4943 Exp $ * $Id: rpl-dag.c,v 1.5 2010/05/10 11:16:35 joxe Exp $
*/ */
/** /**
* \file * \file
@ -175,7 +175,7 @@ rpl_set_default_route(rpl_dag_t *dag, uip_ipaddr_t *from)
PRINTF("RPL: Adding default route through "); PRINTF("RPL: Adding default route through ");
PRINT6ADDR(from); PRINT6ADDR(from);
PRINTF("\n"); PRINTF("\n");
dag->def_route = uip_ds6_defrt_add(from, 100000); dag->def_route = uip_ds6_defrt_add(from, DEFAULT_ROUTE_LIFETIME);
if(dag->def_route == NULL) { if(dag->def_route == NULL) {
return 0; return 0;
} }