Searched refs:igmpstat (Results 1 – 4 of 4) sorted by relevance
| /f-stack/tools/compat/include/netinet/ |
| H A D | igmp_var.h | 54 struct igmpstat { struct 94 CTASSERT(sizeof(struct igmpstat) == IGPS_VERSION3_LEN); argument 190 VNET_PCPUSTAT_DECLARE(struct igmpstat, igmpstat); 192 VNET_PCPUSTAT_ADD(struct igmpstat, igmpstat, name, (val))
|
| /f-stack/freebsd/netinet/ |
| H A D | igmp_var.h | 54 struct igmpstat { struct 94 CTASSERT(sizeof(struct igmpstat) == IGPS_VERSION3_LEN); argument 190 VNET_PCPUSTAT_DECLARE(struct igmpstat, igmpstat); 192 VNET_PCPUSTAT_ADD(struct igmpstat, igmpstat, name, (val))
|
| H A D | igmp.c | 233 VNET_PCPUSTAT_DEFINE(struct igmpstat, igmpstat); 234 VNET_PCPUSTAT_SYSINIT(igmpstat); 235 VNET_PCPUSTAT_SYSUNINIT(igmpstat); 346 struct igmpstat igps0; in sysctl_igmp_stat() 355 if (req->oldlen < sizeof(struct igmpstat)) in sysctl_igmp_stat() 362 COUNTER_ARRAY_COPY(VNET(igmpstat), &igps0, in sysctl_igmp_stat() 367 sizeof(struct igmpstat)); in sysctl_igmp_stat() 370 req->validlen = sizeof(struct igmpstat); in sysctl_igmp_stat() 374 if (req->newlen < sizeof(struct igmpstat)) in sysctl_igmp_stat() 391 COUNTER_ARRAY_ZERO(VNET(igmpstat), in sysctl_igmp_stat() [all …]
|
| /f-stack/tools/netstat/ |
| H A D | inet.c | 1287 struct igmpstat igmpstat; in igmp_stats() local 1291 sizeof(igmpstat), kread) != 0) in igmp_stats() 1303 sizeof(igmpstat), kread); in igmp_stats() 1309 if (igmpstat.igps_version != IGPS_VERSION_3) { in igmp_stats() 1311 igmpstat.igps_version, IGPS_VERSION_3); in igmp_stats() 1314 if (igmpstat.igps_len != IGPS_VERSION3_LEN) { in igmp_stats() 1316 igmpstat.igps_len, IGPS_VERSION3_LEN); in igmp_stats() 1323 #define p64(f, m) if (igmpstat.f || sflag <= 1) \ in igmp_stats() 1324 xo_emit(m, (uintmax_t) igmpstat.f, plural(igmpstat.f)) in igmp_stats() 1325 #define py64(f, m) if (igmpstat.f || sflag <= 1) \ in igmp_stats() [all …]
|