File: acl.h

package info (click to toggle)
gfarm2fs 1.2.11-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,708 kB
  • sloc: sh: 13,372; ansic: 3,985; makefile: 205; perl: 57
file content (15 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * $Id: acl.h 7091 2012-11-16 04:26:58Z takuya-i $
 */

#ifdef ENABLE_ACL
gfarm_error_t gfarm2fs_acl_set(const char *, gfarm_acl_type_t type,
			       const void *, size_t);
gfarm_error_t gfarm2fs_acl_get(const char *, gfarm_acl_type_t type,
			       void *, size_t *);

extern const char ACL_EA_ACCESS[];
extern const char ACL_EA_DEFAULT[];

#define ACL_EA_VERSION  (0x0002) /* Linux ACL Version */
#endif