diff options
author | 2017-03-08 06:50:38 +0000 | |
---|---|---|
committer | 2017-03-08 06:50:38 +0000 | |
commit | 8c928594e4ef2ef072a387be435601b9ac4f91d6 (patch) | |
tree | 4ee1800552cfb5ed53ffedcdf9feffcaa7b3cdde | |
parent | Correct arm64 sigprocmask parameter passing in setjmp/longjmp calls. (diff) | |
download | wireguard-openbsd-8c928594e4ef2ef072a387be435601b9ac4f91d6.tar.xz wireguard-openbsd-8c928594e4ef2ef072a387be435601b9ac4f91d6.zip |
Sync struct etheripstat decl with netinet/ip_ether.h
-rw-r--r-- | sys/net/if_etherip.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/net/if_etherip.h b/sys/net/if_etherip.h index c9269dc9da0..666f26fdbef 100644 --- a/sys/net/if_etherip.h +++ b/sys/net/if_etherip.h @@ -30,15 +30,15 @@ extern int etherip_allow; extern struct etheripstat etheripstat; struct etheripstat { - uint32_t etherip_hdrops; /* packet shorter than header shows */ - uint32_t etherip_qfull; /* bridge queue full, packet dropped */ - uint32_t etherip_noifdrops; /* no interface/bridge info */ - uint32_t etherip_pdrops; /* dropped due to policy */ - uint32_t etherip_adrops; /* all other drops */ - uint32_t etherip_ipackets; /* total input packets */ - uint32_t etherip_opackets; /* total output packets */ - uint64_t etherip_ibytes; /* input bytes */ - uint64_t etherip_obytes; /* output bytes */ + u_int64_t etherips_hdrops; /* packet shorter than header shows */ + u_int64_t etherips_qfull; /* bridge queue full, packet dropped */ + u_int64_t etherips_noifdrops; /* no interface/bridge information */ + u_int64_t etherips_pdrops; /* packet dropped due to policy */ + u_int64_t etherips_adrops; /* all other drops */ + u_int64_t etherips_ipackets; /* total input packets */ + u_int64_t etherips_opackets; /* total output packets */ + u_int64_t etherips_ibytes; /* input bytes */ + u_int64_t etherips_obytes; /* output bytes */ }; struct etherip_header { |