Merge pull request #1354 from tsparber/pr-count-icmp-stats

uIP Stats: Count sent ICMP6 packets
This commit is contained in:
Nicolas Tsiftes 2016-02-26 15:16:35 +01:00
commit 65caef495a

View file

@ -38,7 +38,7 @@
/**
* \file
* ICMPv6 (RFC 4443) implementation, with message and error handling
* \author Julien Abeille <jabeille@cisco.com>
* \author Julien Abeille <jabeille@cisco.com>
* \author Mathilde Durvy <mdurvy@cisco.com>
*/
@ -313,6 +313,10 @@ uip_icmp6_send(const uip_ipaddr_t *dest, int type, int code, int payload_len)
UIP_ICMP_BUF->icmpchksum = ~uip_icmp6chksum();
uip_len = UIP_IPH_LEN + UIP_ICMPH_LEN + payload_len;
UIP_STAT(++uip_stat.icmp.sent);
UIP_STAT(++uip_stat.ip.sent);
tcpip_ipv6_output();
}
/*---------------------------------------------------------------------------*/