summaryrefslogtreecommitdiffstats
path: root/daemon/xattr.c
Commit message (Collapse)AuthorAgeFilesLines
* RHEL 5: header was called <sys/xattr.h>Richard W.M. Jones2009-07-141-2/+9
|
* Fix: daemon/xattr.c can now compile even when no xattr support.Richard W.M. Jones2009-07-141-3/+3
|
* Support for Linux extended attributes.Richard W.M. Jones2009-07-141-0/+284
This commit adds six calls to support Linux extended attributes. They are: getxattrs list all extended attributes for a file or directory setxattr add/replace an extended attribute removexattr remove an extended attribute lgetxattrs \ lsetxattr (same as above, but operate on symbolic links) lremovexattr / See attr(5) for more information. This also adds support for the FBuffer field type, which maps to an XDR opaque<> or a C (int, char *) pair.