solaris10-20040624
[openafs.git] / src / rx / xdr_afsuuid.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * xdr_afsuuid.c, XDR routine for built in afsUUID data type.
12  */
13
14 #include <afsconfig.h>
15 #include "afs/param.h"
16
17 RCSID
18     ("$Header$");
19
20 #if defined(KERNEL) && !defined(UKERNEL)
21 #ifdef AFS_LINUX20_ENV
22 #include "h/string.h"
23 #if 0
24 #define bzero(A, C) memset((A), 0, (C))
25 #endif
26 #else
27 #include <sys/param.h>
28 #include <sys/systm.h>
29 #endif
30 #else
31 #include <stdio.h>
32 #endif
33 #include "xdr.h"
34 #if defined(KERNEL) && !defined(UKERNEL)
35 #ifdef        AFS_DEC_ENV
36 #include <afs/longc_procs.h>
37 #endif
38 #endif
39
40 int
41 xdr_afsUUID(XDR * xdrs, afsUUID * objp)
42 {
43     if (!xdr_afs_uint32(xdrs, &objp->time_low)) {
44         return (FALSE);
45     }
46     if (!xdr_u_short(xdrs, &objp->time_mid)) {
47         return (FALSE);
48     }
49     if (!xdr_u_short(xdrs, &objp->time_hi_and_version)) {
50         return (FALSE);
51     }
52     if (!xdr_char(xdrs, &objp->clock_seq_hi_and_reserved)) {
53         return (FALSE);
54     }
55     if (!xdr_char(xdrs, &objp->clock_seq_low)) {
56         return (FALSE);
57     }
58     if (!xdr_vector(xdrs, (char *)objp->node, 6, sizeof(char), xdr_char)) {
59         return (FALSE);
60     }
61     return (TRUE);
62 }