Date: Thu, 16 Aug 2007 19:29:42 GMT From: Fredrik Lindberg <fli@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 125230 for review Message-ID: <200708161929.l7GJTg4f010141@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=125230 Change 125230 by fli@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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708161929.l7GJTg4f010141>