[Glibc-bsd-commits] r5116 - in trunk/freebsd-glue: debian include/netinet

Robert Millan rmh at alioth.debian.org
Fri Nov 1 12:39:07 UTC 2013


Author: rmh
Date: 2013-11-01 12:39:06 +0000 (Fri, 01 Nov 2013)
New Revision: 5116

Modified:
   trunk/freebsd-glue/debian/changelog
   trunk/freebsd-glue/include/netinet/in.h
Log:
Add INADDR_ALLRPTS_GROUP, INADDR_CARP_GROUP, INADDR_PFSYNC_GROUP and INADDR_ALLMDNS_GROUP magic IPv4 addresses.

Modified: trunk/freebsd-glue/debian/changelog
===================================================================
--- trunk/freebsd-glue/debian/changelog	2013-11-01 12:37:08 UTC (rev 5115)
+++ trunk/freebsd-glue/debian/changelog	2013-11-01 12:39:06 UTC (rev 5116)
@@ -1,3 +1,10 @@
+freebsd-glue (0.1.15) UNRELEASED; urgency=low
+
+  * Add INADDR_ALLRPTS_GROUP, INADDR_CARP_GROUP, INADDR_PFSYNC_GROUP and
+    INADDR_ALLMDNS_GROUP magic IPv4 addresses.
+
+ -- Robert Millan <rmh at debian.org>  Fri, 01 Nov 2013 13:38:42 +0100
+
 freebsd-glue (0.1.14) unstable; urgency=low
 
   * Redirect to native <machine/elf.h> on kFreeBSD.

Modified: trunk/freebsd-glue/include/netinet/in.h
===================================================================
--- trunk/freebsd-glue/include/netinet/in.h	2013-11-01 12:37:08 UTC (rev 5115)
+++ trunk/freebsd-glue/include/netinet/in.h	2013-11-01 12:39:06 UTC (rev 5116)
@@ -13,4 +13,17 @@
 
 #endif
 
+#ifndef INADDR_ALLRPTS_GROUP
+#define	INADDR_ALLRPTS_GROUP	(u_int32_t)0xe0000016	/* 224.0.0.22, IGMPv3 */
 #endif
+#ifndef INADDR_CARP_GROUP
+#define	INADDR_CARP_GROUP	(u_int32_t)0xe0000012	/* 224.0.0.18 */
+#endif
+#ifndef INADDR_PFSYNC_GROUP
+#define	INADDR_PFSYNC_GROUP	(u_int32_t)0xe00000f0	/* 224.0.0.240 */
+#endif
+#ifndef INADDR_ALLMDNS_GROUP
+#define	INADDR_ALLMDNS_GROUP	(u_int32_t)0xe00000fb	/* 224.0.0.251 */
+#endif
+
+#endif




More information about the Glibc-bsd-commits mailing list