Deleted Added
full compact
30c30
< * $FreeBSD: head/sys/net/if_arp.h 219819 2011-03-21 09:40:01Z jeff $
---
> * $FreeBSD: head/sys/net/if_arp.h 253081 2013-07-09 09:32:06Z ae $
116,120c116,120
< u_long txrequests; /* # of ARP requests sent by this host. */
< u_long txreplies; /* # of ARP replies sent by this host. */
< u_long rxrequests; /* # of ARP requests received by this host. */
< u_long rxreplies; /* # of ARP replies received by this host. */
< u_long received; /* # of ARP packets received by this host. */
---
> uint64_t txrequests; /* # of ARP requests sent by this host. */
> uint64_t txreplies; /* # of ARP replies sent by this host. */
> uint64_t rxrequests; /* # of ARP requests received by this host. */
> uint64_t rxreplies; /* # of ARP replies received by this host. */
> uint64_t received; /* # of ARP packets received by this host. */
122c122
< u_long arp_spares[4]; /* For either the upper or lower half. */
---
> uint64_t arp_spares[4]; /* For either the upper or lower half. */
124,125c124,125
< u_long dropped; /* # of packets dropped waiting for a reply. */
< u_long timeouts; /* # of times with entries removed */
---
> uint64_t dropped; /* # of packets dropped waiting for a reply. */
> uint64_t timeouts; /* # of times with entries removed */
127c127
< u_long dupips; /* # of duplicate IPs detected. */
---
> uint64_t dupips; /* # of duplicate IPs detected. */