The branch main has been updated by kp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=64b30b7aeb6d0dc48d038b3df033328c8d8c3141

commit 64b30b7aeb6d0dc48d038b3df033328c8d8c3141
Author:     Kristof Provost <k...@freebsd.org>
AuthorDate: 2023-07-12 09:43:43 +0000
Commit:     Kristof Provost <k...@freebsd.org>
CommitDate: 2023-07-12 09:43:43 +0000

    pf: fix pfi_kif definition in the man page
    
    PR:             272455
    Submitted by:   a...@inferiorhumanorgans.com
    MFC after:      1 week
---
 share/man/man4/pf.4 | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/share/man/man4/pf.4 b/share/man/man4/pf.4
index 133e4d300043..8f25b7c7aebd 100644
--- a/share/man/man4/pf.4
+++ b/share/man/man4/pf.4
@@ -28,7 +28,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd May 7, 2021
+.Dd July 12, 2023
 .Dt PF 4
 .Os
 .Sh NAME
@@ -1094,20 +1094,18 @@ The data is returned in the
 structure described below:
 .Bd -literal
 struct pfi_kif {
-       RB_ENTRY(pfi_kif)                pfik_tree;
        char                             pfik_name[IFNAMSIZ];
+       union {
+               RB_ENTRY(pfi_kif)        pfik_tree;
+               LIST_ENTRY(pfi_kif)      pfik_list;
+       };
        u_int64_t                        pfik_packets[2][2][2];
        u_int64_t                        pfik_bytes[2][2][2];
        u_int32_t                        pfik_tzero;
-       int                              pfik_flags;
-       struct pf_state_tree_lan_ext     pfik_lan_ext;
-       struct pf_state_tree_ext_gwy     pfik_ext_gwy;
-       TAILQ_ENTRY(pfi_kif)             pfik_w_states;
-       void                            *pfik_ah_cookie;
+       u_int                            pfik_flags;
        struct ifnet                    *pfik_ifp;
        struct ifg_group                *pfik_group;
-       int                              pfik_states;
-       int                              pfik_rules;
+       u_int                            pfik_rulerefs;
        TAILQ_HEAD(, pfi_dynaddr)        pfik_dynaddrs;
 };
 .Ed

Reply via email to