Slight improvements in debug messages
This commit is contained in:
parent
fc1adec1b8
commit
0ed7db0f9b
2 changed files with 5 additions and 2 deletions
|
@ -184,7 +184,7 @@ nullify_parents(rpl_dag_t *dag, rpl_rank_t minimum_rank)
|
|||
{
|
||||
rpl_parent_t *p;
|
||||
|
||||
PRINTF("RPL: Removing parents (minimum rank %u)\n",
|
||||
PRINTF("RPL: Nullifying parents (minimum rank %u)\n",
|
||||
minimum_rank);
|
||||
|
||||
p = nbr_table_head(rpl_parents);
|
||||
|
@ -547,7 +547,9 @@ rpl_add_parent(rpl_dag_t *dag, rpl_dio_t *dio, uip_ipaddr_t *addr)
|
|||
* Typically, the parent is added upon receiving a DIO. */
|
||||
const uip_lladdr_t *lladdr = uip_ds6_nbr_lladdr_from_ipaddr(addr);
|
||||
|
||||
PRINTF("RPL: rpl_add_parent lladdr %p\n", lladdr);
|
||||
PRINTF("RPL: rpl_add_parent lladdr %p ", lladdr);
|
||||
PRINT6ADDR(addr);
|
||||
PRINTF("\n");
|
||||
if(lladdr != NULL) {
|
||||
/* Add parent in rpl_parents */
|
||||
p = nbr_table_add_lladdr(rpl_parents, (rimeaddr_t *)lladdr);
|
||||
|
|
|
@ -83,6 +83,7 @@ rpl_verify_header(int uip_ext_opt_offset)
|
|||
}
|
||||
|
||||
if(UIP_EXT_HDR_OPT_RPL_BUF->flags & RPL_HDR_OPT_FWD_ERR) {
|
||||
PRINTF("RPL: Forward error!\n");
|
||||
/* We should try to repair it by removing the neighbor that caused
|
||||
the packet to be forwareded in the first place. We drop any
|
||||
routes that go through the neighbor that sent the packet to
|
||||
|
|
Loading…
Reference in a new issue