diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2006-10-25 11:26:48 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2006-10-25 11:26:48 +0000 |
commit | 21a1d3c5ffca872a677e1459355d1810bd19e217 (patch) | |
tree | 67446db7788bb9e569ef0cf814a3b9d5181e54e7 /sys/net/pfvar.h | |
parent | ff41d9b3d524c37c68b96c09e7b65325a302f870 (diff) |
add a "u_int8_t logif" to struct pfrule to select to which pflog interface
logs go. ok mcbride
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r-- | sys/net/pfvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 48c6ada497c..0a221b3825d 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.238 2006/10/17 14:08:17 reyk Exp $ */ +/* $OpenBSD: pfvar.h,v 1.239 2006/10/25 11:26:47 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -563,6 +563,7 @@ struct pf_rule { u_int8_t action; u_int8_t direction; u_int8_t log; + u_int8_t logif; u_int8_t quick; u_int8_t ifnot; u_int8_t match_tag_not; |