diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2014-07-09 11:03:05 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2014-07-09 11:03:05 +0000 |
commit | 0983a6f99c7a5491ed754153a0af32ad11100b68 (patch) | |
tree | 06f2bacd833b22e084513b15db79649b915b96e1 /sys/net/bpf.h | |
parent | 42c4f45bad9861fff06c921b7e9f014874c6ea92 (diff) |
tedu bpf_mtap_pflog().
now that it is a trivial wrapper around the extended bpf_mtap_hdr, we can
use bpf_mtap_hdr directly. added benefit: pflog_bpfcopy doesn't need to
be exported any more and can stay private to if_pflog.c
ok benno bluhm reyk
Diffstat (limited to 'sys/net/bpf.h')
-rw-r--r-- | sys/net/bpf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/bpf.h b/sys/net/bpf.h index 7b061ec10b6..f318ba4339b 100644 --- a/sys/net/bpf.h +++ b/sys/net/bpf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.h,v 1.44 2014/07/09 09:30:49 henning Exp $ */ +/* $OpenBSD: bpf.h,v 1.45 2014/07/09 11:03:04 henning Exp $ */ /* $NetBSD: bpf.h,v 1.15 1996/12/13 07:57:33 mikel Exp $ */ /* @@ -276,7 +276,6 @@ void bpf_mtap_hdr(caddr_t, caddr_t, u_int, struct mbuf *, u_int, void (*)(const void *, void *, size_t)); void bpf_mtap_af(caddr_t, u_int32_t, struct mbuf *, u_int); void bpf_mtap_ether(caddr_t, struct mbuf *, u_int); -void bpf_mtap_pflog(caddr_t, caddr_t, struct mbuf *); void bpfattach(caddr_t *, struct ifnet *, u_int, u_int); void bpfdetach(struct ifnet *); void bpfilterattach(int); |