svn commit: r193861 - head/share/man/man4

Oleg Bulyzhin oleg at FreeBSD.org
Tue Jun 9 21:35:33 UTC 2009


Author: oleg
Date: Tue Jun  9 21:35:32 2009
New Revision: 193861
URL: http://svn.freebsd.org/changeset/base/193861

Log:
  Sync struct ng_ipfw_tag description with sources.
  
  Submitted by:	Mikolaj Golub

Modified:
  head/share/man/man4/ng_ipfw.4

Modified: head/share/man/man4/ng_ipfw.4
==============================================================================
--- head/share/man/man4/ng_ipfw.4	Tue Jun  9 21:29:16 2009	(r193860)
+++ head/share/man/man4/ng_ipfw.4	Tue Jun  9 21:35:32 2009	(r193861)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 5, 2005
+.Dd June 10, 2009
 .Dt NG_IPFW 4
 .Os
 .Sh NAME
@@ -84,11 +84,12 @@ to
 struct ng_ipfw_tag {
 	struct m_tag	mt;		/* tag header */
 	struct ip_fw	*rule;		/* matching rule */
+	uint32_t	rule_id;	/* matching rule id */
+	uint32_t	chain_id;	/* ruleset id */
         struct ifnet	*ifp;		/* interface, for ip_output */
 	int		dir;		/* packet direction */
 #define	NG_IPFW_OUT	0
 #define	NG_IPFW_IN	1
-	int		flags;		/* flags, for ip_output() */
 };
 .Ed
 .Pp


More information about the svn-src-all mailing list