diff options
author | 2008-06-10 04:24:17 +0000 | |
---|---|---|
committer | 2008-06-10 04:24:17 +0000 | |
commit | 3a0fe0cefe735e5aeefc4b23bbae13714ded1db2 (patch) | |
tree | 02204bf3af96f38a4760cb5ae8781d75bf961d8d /sys/net/pf_ioctl.c | |
parent | better reference for pattern-list (diff) | |
download | wireguard-openbsd-3a0fe0cefe735e5aeefc4b23bbae13714ded1db2.tar.xz wireguard-openbsd-3a0fe0cefe735e5aeefc4b23bbae13714ded1db2.zip |
implement a sloppy tcpstate tracker which does not look at sequence
numbers at all. scary consequences; only tobe used in very specific
situations where you don't see all packets of a connection, e. g.
asymmetric routing. ok ryan reyk theo
Diffstat (limited to 'sys/net/pf_ioctl.c')
-rw-r--r-- | sys/net/pf_ioctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pf_ioctl.c b/sys/net/pf_ioctl.c index ff1dc003a83..0712e075bf9 100644 --- a/sys/net/pf_ioctl.c +++ b/sys/net/pf_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_ioctl.c,v 1.200 2008/05/30 14:22:48 henning Exp $ */ +/* $OpenBSD: pf_ioctl.c,v 1.201 2008/06/10 04:24:17 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -882,6 +882,7 @@ pf_state_export(struct pfsync_state *sp, struct pf_state *s) sp->expire = pf_state_expires(s); sp->log = s->log; sp->allow_opts = s->allow_opts; + sp->sloppy = s->sloppy; sp->timeout = s->timeout; if (s->src_node) |