diff options
Diffstat (limited to 'sys/net/pfil.h')
-rw-r--r-- | sys/net/pfil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/net/pfil.h b/sys/net/pfil.h index fabfe9a..9c45f10 100644 --- a/sys/net/pfil.h +++ b/sys/net/pfil.h @@ -38,11 +38,14 @@ #include <sys/_mutex.h> #include <sys/lock.h> #include <sys/rmlock.h> +#include <net/vnet.h> struct mbuf; struct ifnet; struct inpcb; +VNET_DECLARE(int, pfilforward); +#define V_pfilforward VNET(pfilforward) /* * The packet filter hooks are designed for anything to call them to * possibly intercept the packet. |