diff options
-rw-r--r-- | sys/net/pfil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pfil.h b/sys/net/pfil.h index 22d3d16..5db9e55 100644 --- a/sys/net/pfil.h +++ b/sys/net/pfil.h @@ -49,7 +49,8 @@ struct inpcb; */ struct packet_filter_hook { TAILQ_ENTRY(packet_filter_hook) pfil_link; - int (*pfil_func)(void *, struct mbuf **, struct ifnet *, int, struct inpcb *); + int (*pfil_func)(void *, struct mbuf **, struct ifnet *, int, + struct inpcb *); void *pfil_arg; int pfil_flags; }; |