From 33e5454301467440d9fc40eab70324b583a53ddb Mon Sep 17 00:00:00 2001 From: dlg Date: Fri, 11 Nov 2022 10:51:46 +0000 Subject: [PATCH] prepare for moving struct pf_state from pfvar.h to pfvar_priv.h pflow obviously looks at the kernel pf state structure to do it's thing, so it will need the header that provides it. i'm committing this chunk separately to the actual pf_state move to keep the commits small and simple. ok sashan@ --- sys/net/if_pflow.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/net/if_pflow.c b/sys/net/if_pflow.c index 7f011073ba6..46fcabc42ac 100644 --- a/sys/net/if_pflow.c +++ b/sys/net/if_pflow.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflow.c,v 1.96 2022/08/12 16:38:50 mvs Exp $ */ +/* $OpenBSD: if_pflow.c,v 1.97 2022/11/11 10:51:46 dlg Exp $ */ /* * Copyright (c) 2011 Florian Obser @@ -40,12 +40,14 @@ #include #include +#include #include #include #include #include #include +#include #include #include "bpfilter.h" -- 2.20.1