diff options
author | 2019-05-26 02:06:55 +0000 | |
---|---|---|
committer | 2019-05-26 02:06:55 +0000 | |
commit | 1e7b3898af1c26ebef433796110d2c898507cf56 (patch) | |
tree | fe3a3115b8982d8f28469244bd34af140aeefaae | |
parent | use proper crossreferences (diff) | |
download | wireguard-openbsd-1e7b3898af1c26ebef433796110d2c898507cf56.tar.xz wireguard-openbsd-1e7b3898af1c26ebef433796110d2c898507cf56.zip |
Sync with the latest net/pfvar.h
ok jmc@ sashan@
-rw-r--r-- | share/man/man4/pf.4 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/share/man/man4/pf.4 b/share/man/man4/pf.4 index a30d8f6b1e7..db90604c06c 100644 --- a/share/man/man4/pf.4 +++ b/share/man/man4/pf.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.4,v 1.91 2019/02/18 13:11:44 bluhm Exp $ +.\" $OpenBSD: pf.4,v 1.92 2019/05/26 02:06:55 lteo Exp $ .\" .\" Copyright (C) 2001, Kjell Wooding. All rights reserved. .\" @@ -26,7 +26,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: February 18 2019 $ +.Dd $Mdocdate: May 26 2019 $ .Dt PF 4 .Os .Sh NAME @@ -269,6 +269,7 @@ struct pf_status { u_int64_t pcounters[2][2][3]; u_int64_t bcounters[2][2]; u_int64_t stateid; + u_int64_t syncookies_inflight[2]; /* unACKed SYNcookies */ time_t since; u_int32_t running; u_int32_t states; @@ -277,6 +278,9 @@ struct pf_status { u_int32_t debug; u_int32_t hostid; u_int32_t reass; /* reassembly */ + u_int8_t syncookies_active; + u_int8_t syncookies_mode; /* never/always/adaptive */ + u_int8_t pad[2]; char ifname[IFNAMSIZ]; u_int8_t pf_chksum[PF_MD5_DIGEST_LENGTH]; }; @@ -411,7 +415,8 @@ struct pfioc_limit { }; enum { PF_LIMIT_STATES, PF_LIMIT_SRC_NODES, PF_LIMIT_FRAGS, - PF_LIMIT_TABLES, PF_LIMIT_TABLE_ENTRIES, PF_LIMIT_MAX }; + PF_LIMIT_TABLES, PF_LIMIT_TABLE_ENTRIES, PF_LIMIT_PKTDELAY_PKTS, + PF_LIMIT_MAX }; .Ed .It Dv DIOCGETLIMIT Fa "struct pfioc_limit *pl" Get the hard |