PERFORCE change 125230 for review

Fredrik Lindberg fli at FreeBSD.org
Thu Aug 16 12:29:43 PDT 2007


http://perforce.freebsd.org/chv.cgi?CH=125230

Change 125230 by fli at fli_nexus on 2007/08/16 19:28:45

	- Add a way to specify if a resource set is shared
	- Fix comments.

Affected files ...

.. //depot/projects/soc2007/fli-mdns_sd/shared/mdnsd_ipc.h#2 edit

Differences ...

==== //depot/projects/soc2007/fli-mdns_sd/shared/mdnsd_ipc.h#2 (text+ko) ====

@@ -292,15 +292,17 @@
  *                   no more records exists an CMP_ACK is returned.
  *
  * Message structure
- * +----------------+-------//-------+
- * |  ident length  |  ident string  |
- * +----------------+-------//-------+
+ * +----------------+-+---------------+-------//-------+
+ * |  ident length  |s|     zero      |  ident string  |
+ * +----------------+-+---------------+-------//-------+
  *
  */
 
 struct mipc_dbident {
-	uint32_t	mii_ifidx; /* Interface index */
-	uint32_t	mii_len; /* ident length */
+	uint32_t	mii_ifidx;	/* Interface index */
+	uint32_t	mii_len;	/* Ident length */
+	unsigned int	mii_shared:1;	/* Shared record set */
+	unsigned int	mii_zero:31;
 	/* Ident follows (ascii) */
 } __packed;
 


More information about the p4-projects mailing list