diff options
author | Mike Frantzen <frantzen@cvs.openbsd.org> | 2001-10-02 18:00:39 +0000 |
---|---|---|
committer | Mike Frantzen <frantzen@cvs.openbsd.org> | 2001-10-02 18:00:39 +0000 |
commit | 1f207317b455e04a0ecef5dfe43a2bdca8f99c1f (patch) | |
tree | 2d69e66443a43c197507b2a8be65b6474bef8692 /sbin/pfctl/pfctl.c | |
parent | ded2ee778b9722a1f96084a853dbb97a7d596932 (diff) |
Typo fixes (thanks gwyllion@ace.ulyssis.org)
Diffstat (limited to 'sbin/pfctl/pfctl.c')
-rw-r--r-- | sbin/pfctl/pfctl.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 666ce0f7bd3..c22510bbfb3 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.44 2001/10/02 17:55:24 dhartmei Exp $ */ +/* $OpenBSD: pfctl.c,v 1.45 2001/10/02 18:00:38 frantzen Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -113,6 +113,7 @@ static const struct pf_hint pf_hint_normal[] = { static const struct pf_hint pf_hint_satellite[] = { { "tcp.first", 3 * 60}, { "tcp.opening", 30 + 5}, + { "tcp.established", 24 * 60 * 60 }, { "tcp.closing", 15 * 60 + 5}, { "tcp.finwait", 45 + 5}, { "tcp.closed", 90 + 5}, @@ -130,7 +131,7 @@ static const struct pf_hint pf_hint_aggressive[] = { { "tcp.opening", 5 }, { "tcp.established", 5 * 60 * 60 }, { "tcp.closing", 60 }, - { "tcp.finwait", 60 }, + { "tcp.finwait", 30 }, { "tcp.closed", 30 }, { NULL, 0}}; @@ -545,7 +546,8 @@ pfctl_hint(int dev, const char *opt, int opts) if (strcasecmp(opt, pf_hints[i].name) == 0) break; - if (pf_hints[i].name == NULL) { + hint = pf_hints[i].hint; + if (hint == NULL) { warnx("Bad hint name. Format -O hint"); return 1; } |