diff options
author | Ralph Boehme <slow@samba.org> | 2017-10-19 14:22:00 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-11-08 00:20:08 +0100 |
commit | 5890c74f824630a317f202b5299f47f611732ccf (patch) | |
tree | f276253fe02a00cbe161b7d3ca28b71a1028e4f8 /librpc | |
parent | df99ac27106dededcf0a98a251e58c24b90bf6d1 (diff) | |
download | samba-5890c74f824630a317f202b5299f47f611732ccf.tar.gz |
librpc/idl: add versions consts to nfs4acl.idl
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/nfs4acl.idl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/librpc/idl/nfs4acl.idl b/librpc/idl/nfs4acl.idl index 79e742c90e7..1f0cfbf7a04 100644 --- a/librpc/idl/nfs4acl.idl +++ b/librpc/idl/nfs4acl.idl @@ -19,6 +19,10 @@ interface nfs4acl_interface const char *NFS4ACL_XATTR_GROUP_WHO = "GROUP@"; const char *NFS4ACL_XATTR_EVERYONE_WHO = "EVERYONE@"; + const uint8 ACL4_XATTR_VERSION_40 = 0x00; + const uint8 ACL4_XATTR_VERSION_41 = 0x01; + const uint8 ACL4_XATTR_VERSION_DEFAULT = ACL4_XATTR_VERSION_40; + /* these structures use the same bit values and other constants as in security.idl */ typedef [flag(NDR_BIG_ENDIAN)] struct { |