summaryrefslogtreecommitdiffstats
path: root/rpc/xdr/src/acl3-xdr.c
blob: 8fbaeff160c4c08640f7a337f3667472e43b7e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * Copyright (c) 2012 Red Hat, Inc. <http://www.redhat.com>
 * This file is part of GlusterFS.
 *
 * This file is licensed to you under your choice of the GNU Lesser
 * General Public License, version 3 or any later version (LGPLv3 or
 * later), or the GNU General Public License, version 2 (GPLv2), in all
 * cases as published by the Free Software Foundation.
 */

/*
 * Please do not edit this file.
 * It was generated using rpcgen.
 */

#include "acl3-xdr.h"

bool_t
xdr_aclentry (XDR *xdrs, aclentry *objp)
{
	 if (!xdr_int (xdrs, &objp->type))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->uid))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->perm))
		 return FALSE;
	return TRUE;
}

bool_t
xdr_getaclargs (XDR *xdrs, getaclargs *objp)
{
	 if (!xdr_netobj (xdrs, &objp->fh))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->mask))
		 return FALSE;
	return TRUE;
}

bool_t
xdr_getaclreply (XDR *xdrs, getaclreply *objp)
{
	 if (!xdr_int (xdrs, &objp->status))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->attr_follows))
		 return FALSE;
	 if (!xdr_fattr3 (xdrs, &objp->attr))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->mask))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->aclcount))
		 return FALSE;
	 if (!xdr_array (xdrs, (char **)&objp->aclentry.aclentry_val, (u_int *) &objp->aclentry.aclentry_len, ~0,
		sizeof (aclentry), (xdrproc_t) xdr_aclentry))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->daclcount))
		 return FALSE;
	 if (!xdr_array (xdrs, (char **)&objp->daclentry.daclentry_val, (u_int *) &objp->daclentry.daclentry_len, ~0,
		sizeof (aclentry), (xdrproc_t) xdr_aclentry))
		 return FALSE;
	return TRUE;
}

bool_t
xdr_setaclargs (XDR *xdrs, setaclargs *objp)
{
	 if (!xdr_netobj (xdrs, &objp->fh))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->mask))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->aclcount))
		 return FALSE;
	 if (!xdr_array (xdrs, (char **)&objp->aclentry.aclentry_val, (u_int *) &objp->aclentry.aclentry_len, ~0,
		sizeof (aclentry), (xdrproc_t) xdr_aclentry))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->daclcount))
		 return FALSE;
	 if (!xdr_array (xdrs, (char **)&objp->daclentry.daclentry_val, (u_int *) &objp->daclentry.daclentry_len, ~0,
		sizeof (aclentry), (xdrproc_t) xdr_aclentry))
		 return FALSE;
	return TRUE;
}

bool_t
xdr_setaclreply (XDR *xdrs, setaclreply *objp)
{
	 if (!xdr_int (xdrs, &objp->status))
		 return FALSE;
	 if (!xdr_int (xdrs, &objp->attr_follows))
		 return FALSE;
	 if (!xdr_fattr3 (xdrs, &objp->attr))
		 return FALSE;
	return TRUE;
}