Added a configuration option to annotate IP transmissions with red arrows in Cooja.

This commit is contained in:
Adam Dunkels 2012-11-26 19:41:11 +01:00
parent b24157631f
commit 0bad2b1748

View file

@ -586,6 +586,11 @@ tcpip_ipv6_output(void)
} else {
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 */
#if UIP_CONF_IPV6_RPL