svn commit: r222561 - user/hrs/ipv6/sys/netinet6

Hiroki Sato hrs at FreeBSD.org
Wed Jun 1 13:15:24 UTC 2011


Author: hrs
Date: Wed Jun  1 13:15:24 2011
New Revision: 222561
URL: http://svn.freebsd.org/changeset/base/222561

Log:
  Fix missing changes in the previous "merge from HEAD".

Modified:
  user/hrs/ipv6/sys/netinet6/in6_proto.c

Modified: user/hrs/ipv6/sys/netinet6/in6_proto.c
==============================================================================
--- user/hrs/ipv6/sys/netinet6/in6_proto.c	Wed Jun  1 12:33:05 2011	(r222560)
+++ user/hrs/ipv6/sys/netinet6/in6_proto.c	Wed Jun  1 13:15:24 2011	(r222561)
@@ -392,6 +392,13 @@ VNET_DOMAIN_SET(inet6);
 /*
  * Internet configuration info
  */
+#ifndef	IPV6FORWARDING
+#ifdef GATEWAY6
+#define	IPV6FORWARDING	1	/* forward IP6 packets not for us */
+#else
+#define	IPV6FORWARDING	0	/* don't forward IP6 packets not for us */
+#endif /* GATEWAY6 */
+#endif /* !IPV6FORWARDING */
 
 #ifndef	IPV6_SENDREDIRECTS
 #define	IPV6_SENDREDIRECTS	1


More information about the svn-src-user mailing list