diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2009-04-07 12:48:41 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2009-04-07 12:48:41 +0000 |
commit | 773f8756b62272c101488008f36de8018016094d (patch) | |
tree | 3a01fb7e7286af82e5da4f4e51f46dbff143deb5 /sys | |
parent | 458cf94f8cc014a36b9069a43fc6f0dd725588aa (diff) |
turn fragment reassembly on by default. the is little to no reason to
not do fragment reassembly. discussed with dlg and ryan in basel.
ok ryan dlg sthen jdixon todd deraadt
Diffstat (limited to 'sys')
-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 01eaaa79fa8..aa459d683e8 100644 --- a/sys/net/pf_ioctl.c +++ b/sys/net/pf_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_ioctl.c,v 1.216 2009/04/06 12:05:55 henning Exp $ */ +/* $OpenBSD: pf_ioctl.c,v 1.217 2009/04/07 12:48:40 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -209,6 +209,7 @@ pfattach(int num) pf_normalize_init(); bzero(&pf_status, sizeof(pf_status)); pf_status.debug = PF_DEBUG_URGENT; + pf_status.reass = PF_REASS_ENABLED; /* XXX do our best to avoid a conflict */ pf_status.hostid = arc4random(); |