svn commit: r349365 - head/sys/netpfil/ipfw

Andrey V. Elsukov ae at FreeBSD.org
Tue Jun 25 09:11:23 UTC 2019


Author: ae
Date: Tue Jun 25 09:11:22 2019
New Revision: 349365
URL: https://svnweb.freebsd.org/changeset/base/349365

Log:
  Mark default rule with IPFW_RULE_NOOPT flag, so it can be showed in
  compact form.
  
  MFC after:	1 week

Modified:
  head/sys/netpfil/ipfw/ip_fw2.c

Modified: head/sys/netpfil/ipfw/ip_fw2.c
==============================================================================
--- head/sys/netpfil/ipfw/ip_fw2.c	Tue Jun 25 09:08:24 2019	(r349364)
+++ head/sys/netpfil/ipfw/ip_fw2.c	Tue Jun 25 09:11:22 2019	(r349365)
@@ -3364,6 +3364,7 @@ vnet_ipfw_init(const void *unused)
 
 	/* fill and insert the default rule */
 	rule = ipfw_alloc_rule(chain, sizeof(struct ip_fw));
+	rule->flags |= IPFW_RULE_NOOPT;
 	rule->cmd_len = 1;
 	rule->cmd[0].len = 1;
 	rule->cmd[0].opcode = default_to_accept ? O_ACCEPT : O_DENY;


More information about the svn-src-head mailing list