Added a configuration option to annotate IP transmissions with red arrows in Cooja.
This commit is contained in:
parent
b24157631f
commit
0bad2b1748
|
@ -586,6 +586,11 @@ tcpip_ipv6_output(void)
|
||||||
} else {
|
} else {
|
||||||
nexthop = &locrt->nexthop;
|
nexthop = &locrt->nexthop;
|
||||||
}
|
}
|
||||||
|
#if TCPIP_CONF_ANNOTATE_TRANSMISSIONS
|
||||||
|
if(nexthop != NULL) {
|
||||||
|
printf("#L %u 1; red\n", nexthop->u8[sizeof(uip_ipaddr_t) - 1]);
|
||||||
|
}
|
||||||
|
#endif /* TCPIP_CONF_ANNOTATE_TRANSMISSIONS */
|
||||||
}
|
}
|
||||||
/* End of next hop determination */
|
/* End of next hop determination */
|
||||||
#if UIP_CONF_IPV6_RPL
|
#if UIP_CONF_IPV6_RPL
|
||||||
|
|
Loading…
Reference in a new issue