Deleted Added
full compact
61c61
< * $FreeBSD: head/sys/netinet6/ip6_var.h 249552 2013-04-16 16:59:29Z tijl $
---
> * $FreeBSD: head/sys/netinet6/ip6_var.h 253081 2013-07-09 09:32:06Z ae $
184,206c184,206
< u_quad_t ip6s_total; /* total packets received */
< u_quad_t ip6s_tooshort; /* packet too short */
< u_quad_t ip6s_toosmall; /* not enough data */
< u_quad_t ip6s_fragments; /* fragments received */
< u_quad_t ip6s_fragdropped; /* frags dropped(dups, out of space) */
< u_quad_t ip6s_fragtimeout; /* fragments timed out */
< u_quad_t ip6s_fragoverflow; /* fragments that exceeded limit */
< u_quad_t ip6s_forward; /* packets forwarded */
< u_quad_t ip6s_cantforward; /* packets rcvd for unreachable dest */
< u_quad_t ip6s_redirectsent; /* packets forwarded on same net */
< u_quad_t ip6s_delivered; /* datagrams delivered to upper level*/
< u_quad_t ip6s_localout; /* total ip packets generated here */
< u_quad_t ip6s_odropped; /* lost packets due to nobufs, etc. */
< u_quad_t ip6s_reassembled; /* total packets reassembled ok */
< u_quad_t ip6s_fragmented; /* datagrams successfully fragmented */
< u_quad_t ip6s_ofragments; /* output fragments created */
< u_quad_t ip6s_cantfrag; /* don't fragment flag was set, etc. */
< u_quad_t ip6s_badoptions; /* error in option processing */
< u_quad_t ip6s_noroute; /* packets discarded due to no route */
< u_quad_t ip6s_badvers; /* ip6 version != 6 */
< u_quad_t ip6s_rawout; /* total raw ip packets generated */
< u_quad_t ip6s_badscope; /* scope error */
< u_quad_t ip6s_notmember; /* don't join this multicast group */
---
> uint64_t ip6s_total; /* total packets received */
> uint64_t ip6s_tooshort; /* packet too short */
> uint64_t ip6s_toosmall; /* not enough data */
> uint64_t ip6s_fragments; /* fragments received */
> uint64_t ip6s_fragdropped; /* frags dropped(dups, out of space) */
> uint64_t ip6s_fragtimeout; /* fragments timed out */
> uint64_t ip6s_fragoverflow; /* fragments that exceeded limit */
> uint64_t ip6s_forward; /* packets forwarded */
> uint64_t ip6s_cantforward; /* packets rcvd for unreachable dest */
> uint64_t ip6s_redirectsent; /* packets forwarded on same net */
> uint64_t ip6s_delivered; /* datagrams delivered to upper level*/
> uint64_t ip6s_localout; /* total ip packets generated here */
> uint64_t ip6s_odropped; /* lost packets due to nobufs, etc. */
> uint64_t ip6s_reassembled; /* total packets reassembled ok */
> uint64_t ip6s_fragmented; /* datagrams successfully fragmented */
> uint64_t ip6s_ofragments; /* output fragments created */
> uint64_t ip6s_cantfrag; /* don't fragment flag was set, etc. */
> uint64_t ip6s_badoptions; /* error in option processing */
> uint64_t ip6s_noroute; /* packets discarded due to no route */
> uint64_t ip6s_badvers; /* ip6 version != 6 */
> uint64_t ip6s_rawout; /* total raw ip packets generated */
> uint64_t ip6s_badscope; /* scope error */
> uint64_t ip6s_notmember; /* don't join this multicast group */
208,209c208,209
< u_quad_t ip6s_nxthist[IP6S_HDRCNT]; /* next header history */
< u_quad_t ip6s_m1; /* one mbuf */
---
> uint64_t ip6s_nxthist[IP6S_HDRCNT]; /* next header history */
> uint64_t ip6s_m1; /* one mbuf */
211,216c211,216
< u_quad_t ip6s_m2m[IP6S_M2MMAX]; /* two or more mbuf */
< u_quad_t ip6s_mext1; /* one ext mbuf */
< u_quad_t ip6s_mext2m; /* two or more ext mbuf */
< u_quad_t ip6s_exthdrtoolong; /* ext hdr are not contiguous */
< u_quad_t ip6s_nogif; /* no match gif found */
< u_quad_t ip6s_toomanyhdr; /* discarded due to too many headers */
---
> uint64_t ip6s_m2m[IP6S_M2MMAX]; /* two or more mbuf */
> uint64_t ip6s_mext1; /* one ext mbuf */
> uint64_t ip6s_mext2m; /* two or more ext mbuf */
> uint64_t ip6s_exthdrtoolong; /* ext hdr are not contiguous */
> uint64_t ip6s_nogif; /* no match gif found */
> uint64_t ip6s_toomanyhdr; /* discarded due to too many headers */
226c226
< u_quad_t ip6s_sources_none;
---
> uint64_t ip6s_sources_none;
228c228
< u_quad_t ip6s_sources_sameif[IP6S_SCOPECNT];
---
> uint64_t ip6s_sources_sameif[IP6S_SCOPECNT];
230c230
< u_quad_t ip6s_sources_otherif[IP6S_SCOPECNT];
---
> uint64_t ip6s_sources_otherif[IP6S_SCOPECNT];
235c235
< u_quad_t ip6s_sources_samescope[IP6S_SCOPECNT];
---
> uint64_t ip6s_sources_samescope[IP6S_SCOPECNT];
240c240
< u_quad_t ip6s_sources_otherscope[IP6S_SCOPECNT];
---
> uint64_t ip6s_sources_otherscope[IP6S_SCOPECNT];
242c242
< u_quad_t ip6s_sources_deprecated[IP6S_SCOPECNT];
---
> uint64_t ip6s_sources_deprecated[IP6S_SCOPECNT];
245c245
< u_quad_t ip6s_sources_rule[IP6S_RULESMAX];
---
> uint64_t ip6s_sources_rule[IP6S_RULESMAX];