summaryrefslogtreecommitdiff
path: root/src/common/xattr.h
blob: 1d7ab5aee7889ded2102a1937100c62e29e3a3b4 (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
/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2011 Stanislav Sedov <stas@FreeBSD.org>
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software
 * Foundation.  See file COPYING.
 */

#ifndef CEPH_EXTATTR_H
#define CEPH_EXTATTR_H

#ifdef __cplusplus
extern "C" {
#endif

int ceph_os_setxattr(const char *path, const char *name,
                  const void *value, size_t size);
int ceph_os_fsetxattr(int fd, const char *name, const void *value,
                   size_t size);
ssize_t ceph_os_getxattr(const char *path, const char *name,
                         void *value, size_t size);
ssize_t ceph_os_fgetxattr(int fd, const char *name, void *value,
                          size_t size);
ssize_t ceph_os_listxattr(const char *path, char *list, size_t size);
ssize_t ceph_os_flistxattr(int fd, char *list, size_t size);
int ceph_os_removexattr(const char *path, const char *name);
int ceph_os_fremovexattr(int fd, const char *name);

#ifdef __cplusplus
}
#endif

#endif /* !CEPH_EXTATTR_H */