diff options
author | 2014-07-09 11:03:04 +0000 | |
---|---|---|
committer | 2014-07-09 11:03:04 +0000 | |
commit | e0bcf97c3335dc16ea9ce156dc288b74e3db502a (patch) | |
tree | 61ba520db57e3b21cf83dfed43eb3c2ec9a9f345 /sys/net/if_pflog.h | |
parent | White spaces. (diff) | |
download | wireguard-openbsd-e0bcf97c3335dc16ea9ce156dc288b74e3db502a.tar.xz wireguard-openbsd-e0bcf97c3335dc16ea9ce156dc288b74e3db502a.zip |
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/if_pflog.h')
-rw-r--r-- | sys/net/if_pflog.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/net/if_pflog.h b/sys/net/if_pflog.h index ffd3f58bcfd..0a1bd38b534 100644 --- a/sys/net/if_pflog.h +++ b/sys/net/if_pflog.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflog.h,v 1.24 2013/06/25 09:16:34 mpi Exp $ */ +/* $OpenBSD: if_pflog.h,v 1.25 2014/07/09 11:03:04 henning Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -67,8 +67,6 @@ struct pflog_softc { LIST_ENTRY(pflog_softc) sc_list; }; -void pflog_bpfcopy(const void *, void *, size_t); - #if NPFLOG > 0 #define PFLOG_PACKET(a,b,c,d,e) pflog_packet(a,b,c,d,e) #else |