mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
pf: fix pfi_kif definition in the man page
PR: 272455 Submitted by: alex@inferiorhumanorgans.com MFC after: 1 week
This commit is contained in:
parent
3a46fe2261
commit
64b30b7aeb
1 changed files with 7 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue