diff options
author | Jakob Unterwurzacher | 2018-03-18 17:43:38 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-03-25 21:06:10 +0200 |
commit | 1ed3d51df1750d5472b1349222c352171f1e8d64 (patch) | |
tree | b5f02aa633e8ebf1a71c4d1778a2e29310541d33 /internal/fusefrontend/fs.go | |
parent | f20974c4dad913a07ce5808005fe07084f87c95f (diff) |
fusefrontend: add xattr support
At the moment, only for reverse mode.
https://github.com/rfjakob/gocryptfs/issues/217
Diffstat (limited to 'internal/fusefrontend/fs.go')
-rw-r--r-- | internal/fusefrontend/fs.go | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/internal/fusefrontend/fs.go b/internal/fusefrontend/fs.go index 00361e8..738f113 100644 --- a/internal/fusefrontend/fs.go +++ b/internal/fusefrontend/fs.go @@ -592,23 +592,3 @@ func (fs *FS) Access(path string, mode uint32, context *fuse.Context) (code fuse } return fuse.ToStatus(syscall.Access(cPath, mode)) } - -// GetXAttr implements pathfs.Filesystem. -func (fs *FS) GetXAttr(name string, attr string, context *fuse.Context) ([]byte, fuse.Status) { - return nil, fuse.ENOSYS -} - -// SetXAttr implements pathfs.Filesystem. -func (fs *FS) SetXAttr(name string, attr string, data []byte, flags int, context *fuse.Context) fuse.Status { - return fuse.ENOSYS -} - -// ListXAttr implements pathfs.Filesystem. -func (fs *FS) ListXAttr(name string, context *fuse.Context) ([]string, fuse.Status) { - return nil, fuse.ENOSYS -} - -// RemoveXAttr implements pathfs.Filesystem. -func (fs *FS) RemoveXAttr(name string, attr string, context *fuse.Context) fuse.Status { - return fuse.ENOSYS -} |