svn commit: r188673 - head/sys/netinet

Luigi Rizzo luigi at FreeBSD.org
Mon Feb 16 07:08:41 PST 2009


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


More information about the svn-src-head mailing list