Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Feb 2009 15:08:41 +0000 (UTC)
From:      Luigi Rizzo <luigi@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188673 - head/sys/netinet
Message-ID:  <200902161508.n1GF8fos059498@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: luigi
Date: Mon Feb 16 15:08:41 2009
New Revision: 188673
URL: http://svn.freebsd.org/changeset/base/188673

Log:
  remove dependency on eventhandler.h, we only need a forward declaration

Modified:
  head/sys/netinet/ip_fw.h

Modified: head/sys/netinet/ip_fw.h
==============================================================================
--- head/sys/netinet/ip_fw.h	Mon Feb 16 15:07:40 2009	(r188672)
+++ head/sys/netinet/ip_fw.h	Mon Feb 16 15:08:41 2009	(r188673)
@@ -682,6 +682,7 @@ typedef int ipfw_nat_t(struct ip_fw_args
 typedef int ipfw_nat_cfg_t(struct sockopt *);
 #endif
 
+struct eventhandler_entry;
 /*
  * Stack virtualization support.
  */
@@ -713,7 +714,7 @@ struct vnet_ipfw {
 	u_int32_t _dyn_max;
 	u_int64_t _norule_counter;
 	struct callout _ipfw_timeout;
-	eventhandler_tag _ifaddr_event_tag;
+	struct eventhandler_entry *_ifaddr_event_tag;
 };
 
 #ifndef VIMAGE



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902161508.n1GF8fos059498>