Lines Matching defs:ipstat
99 struct ipstat { struct
100 uint64_t ips_total; /* total packets received */
101 uint64_t ips_badsum; /* checksum bad */
102 uint64_t ips_tooshort; /* packet too short */
103 uint64_t ips_toosmall; /* not enough data */
104 uint64_t ips_badhlen; /* ip header length < data size */
105 uint64_t ips_badlen; /* ip length < ip header length */
106 uint64_t ips_fragments; /* fragments received */
107 uint64_t ips_fragdropped; /* frags dropped (dups, out of space) */
108 uint64_t ips_fragtimeout; /* fragments timed out */
109 uint64_t ips_forward; /* packets forwarded */
110 uint64_t ips_fastforward; /* packets fast forwarded */
111 uint64_t ips_cantforward; /* packets rcvd for unreachable dest */
112 uint64_t ips_redirectsent; /* packets forwarded on same net */
136 VNET_PCPUSTAT_DECLARE(struct ipstat, ipstat); argument