diff options
Diffstat (limited to 'rpc/xdr/src/acl3-xdr.x')
| -rw-r--r-- | rpc/xdr/src/acl3-xdr.x | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/rpc/xdr/src/acl3-xdr.x b/rpc/xdr/src/acl3-xdr.x new file mode 100644 index 00000000000..7f7364971e6 --- /dev/null +++ b/rpc/xdr/src/acl3-xdr.x @@ -0,0 +1,52 @@ +/* + * 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. + */ + +#ifdef RPC_XDR +%#include "rpc-pragmas.h" +#endif +%#include <glusterfs/compat.h> +%#include "xdr-nfs3.h" + +struct aclentry { + int type; + int uid; + int perm; +}; + +struct getaclargs { + netobj fh; + int mask; +}; + +struct getaclreply { + int status; + int attr_follows; + fattr3 attr; + int mask; + int aclcount; + aclentry aclentry<>; + int daclcount; + aclentry daclentry<>; +}; + +struct setaclargs { + netobj fh; + int mask; + int aclcount; + aclentry aclentry<>; + int daclcount; + aclentry daclentry<>; +}; + +struct setaclreply { + int status; + int attr_follows; + fattr3 attr; +}; |
