Home
last modified time | relevance | path

Searched refs:espstat (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/netipsec/
H A Desp_var.h49 struct espstat { struct
80 VNET_PCPUSTAT_DECLARE(struct espstat, espstat); argument
85 VNET_PCPUSTAT_ADD(struct espstat, espstat, name, (val)); \
91 VNET_PCPUSTAT_ADD(struct espstat, espstat, name[type], 1); \
H A Dxform_esp.c87 VNET_PCPUSTAT_DEFINE(struct espstat, espstat);
88 VNET_PCPUSTAT_SYSINIT(espstat);
91 VNET_PCPUSTAT_SYSUNINIT(espstat);
101 struct espstat, espstat,
/freebsd/usr.bin/netstat/
H A Dipsec.c214 static void print_espstats(const struct espstat *espstat);
316 print_espstats(const struct espstat *espstat) in print_espstats() argument
319 #define p(f, n, m) if (espstat->f || sflag <= 1) \ in print_espstats()
321 (uintmax_t)espstat->f, plural(espstat->f)) in print_espstats()
353 hist(espstat->esps_hist, ipsec_espnames, in print_espstats()
364 struct espstat espstat; in esp_stats() local
366 if (fetch_stats("net.inet.esp.stats", off, &espstat, in esp_stats()
367 sizeof(espstat), kread_counters) != 0) in esp_stats()
372 print_espstats(&espstat); in esp_stats()
/freebsd/tools/tools/crypto/
H A Dipsecstats.c91 struct espstat esps; in main()