diff options
Diffstat (limited to 'share/man/man4/pflog.4')
-rw-r--r-- | share/man/man4/pflog.4 | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/share/man/man4/pflog.4 b/share/man/man4/pflog.4 index c82a6c449f9..eb7a72e94ca 100644 --- a/share/man/man4/pflog.4 +++ b/share/man/man4/pflog.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pflog.4,v 1.3 2003/06/06 10:29:41 jmc Exp $ +.\" $OpenBSD: pflog.4,v 1.4 2003/09/22 04:53:15 jmc Exp $ .\" .\" Copyright (c) 2001 Tobias Weingartner .\" All rights reserved. @@ -54,12 +54,16 @@ This structure, defined in looks like .Bd -literal -offset indent struct pfloghdr { - u_int32_t af; - char ifname[IFNAMSIZ]; - short rnr; - u_short reason; - u_short action; - u_short dir; + u_int8_t length; + sa_family_t af; + u_int8_t action; + u_int8_t reason; + char ifname[IFNAMSIZ]; + char ruleset[PF_RULESET_NAME_SIZE]; + u_int32_t rulenr; + u_int32_t subrulenr; + u_int8_t dir; + u_int8_t pad[3]; }; .Ed .Sh EXAMPLES |