diff options
author | luigi <luigi@FreeBSD.org> | 1999-04-26 14:57:24 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 1999-04-26 14:57:24 +0000 |
commit | e73255d2dc2d278abb31a282e8193f082523b660 (patch) | |
tree | 170a39823d8fcfc49c405d28f020167b55319dcf | |
parent | 0661f43043e1cc05d70f8b1b3fca12ad0e84c941 (diff) | |
download | FreeBSD-src-e73255d2dc2d278abb31a282e8193f082523b660.zip FreeBSD-src-e73255d2dc2d278abb31a282e8193f082523b660.tar.gz |
Make one pass through the firewall the default.
Multiple pass (which only affects dummynet) is too confusing.
-rw-r--r-- | sys/netinet/ip_fw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c index 1867b96..4f51b26 100644 --- a/sys/netinet/ip_fw.c +++ b/sys/netinet/ip_fw.c @@ -12,7 +12,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_fw.c,v 1.108 1999/04/20 14:29:59 peter Exp $ + * $Id: ip_fw.c,v 1.109 1999/04/24 13:23:48 dt Exp $ */ /* @@ -62,7 +62,7 @@ static int fw_verbose = 1; #else static int fw_verbose = 0; #endif -static int fw_one_pass = 0; /* XXX */ +static int fw_one_pass = 1 ; #ifdef IPFIREWALL_VERBOSE_LIMIT static int fw_verbose_limit = IPFIREWALL_VERBOSE_LIMIT; #else |