aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_bpf.h
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>2000-08-10 22:45:54 +0000
committerArchie Cobbs <archie@FreeBSD.org>2000-08-10 22:45:54 +0000
commit57b57be3ecfda78163844d6f2c135ab6269701ec (patch)
treecffa90cf7728b124d8a42556a6448dff18642ccc /sys/netgraph/ng_bpf.h
parent8fccb7e95469dbfe41d7095fe6a4cd0204b025de (diff)
downloadsrc-57b57be3ecfda78163844d6f2c135ab6269701ec.tar.gz
src-57b57be3ecfda78163844d6f2c135ab6269701ec.zip
Take advantage of the new unsigned and hex integer types.
Notes
Notes: svn path=/head/; revision=64508
Diffstat (limited to 'sys/netgraph/ng_bpf.h')
-rw-r--r--sys/netgraph/ng_bpf.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netgraph/ng_bpf.h b/sys/netgraph/ng_bpf.h
index 474fd2a1183a..5e0b5d95e958 100644
--- a/sys/netgraph/ng_bpf.h
+++ b/sys/netgraph/ng_bpf.h
@@ -84,12 +84,12 @@ struct ng_bpf_hookstat {
/* Keep this in sync with the above structure definition */
#define NG_BPF_HOOKSTAT_TYPE_INFO { \
{ \
- { "recvFrames", &ng_parse_int64_type }, \
- { "recvOctets", &ng_parse_int64_type }, \
- { "recvMatchFrames", &ng_parse_int64_type }, \
- { "recvMatchOctets", &ng_parse_int64_type }, \
- { "xmitFrames", &ng_parse_int64_type }, \
- { "xmitOctets", &ng_parse_int64_type }, \
+ { "recvFrames", &ng_parse_uint64_type }, \
+ { "recvOctets", &ng_parse_uint64_type }, \
+ { "recvMatchFrames", &ng_parse_uint64_type }, \
+ { "recvMatchOctets", &ng_parse_uint64_type }, \
+ { "xmitFrames", &ng_parse_uint64_type }, \
+ { "xmitOctets", &ng_parse_uint64_type }, \
{ NULL }, \
} \
}