aboutsummaryrefslogtreecommitdiff
path: root/weed/mount/weedfs_xattr_freebsd.go
blob: 01cb748e56bb29b68e494587498c24ad524ff025 (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
package mount

import (
	"syscall"

	"github.com/hanwen/go-fuse/v2/fuse"
)

func (wfs *WFS) GetXAttr(cancel <-chan struct{}, header *fuse.InHeader, attr string, dest []byte) (size uint32, code fuse.Status) {

	return 0, fuse.Status(syscall.ENOTSUP)
}

func (wfs *WFS) SetXAttr(cancel <-chan struct{}, input *fuse.SetXAttrIn, attr string, data []byte) fuse.Status {

	return fuse.Status(syscall.ENOTSUP)
}

func (wfs *WFS) ListXAttr(cancel <-chan struct{}, header *fuse.InHeader, dest []byte) (n uint32, code fuse.Status) {

	return 0, fuse.Status(syscall.ENOTSUP)
}

func (wfs *WFS) RemoveXAttr(cancel <-chan struct{}, header *fuse.InHeader, attr string) fuse.Status {

	return fuse.Status(syscall.ENOTSUP)
}