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