aboutsummaryrefslogtreecommitdiff
path: root/internal/fusefrontend_reverse/node_xattr_freebsd.go
blob: 949cf151ab68a8d8aa4965bdbde8ab94b136a32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package fusefrontend_reverse

import (
	"golang.org/x/sys/unix"
)

const noSuchAttributeError = unix.ENOATTR

func (n *Node) getXAttr(cAttr string) (out []byte, errno unix.Errno) {
	// TODO
	return nil, unix.EOPNOTSUPP
}

func (n *Node) listXAttr() (out []string, errno unix.Errno) {
	// TODO
	return nil, unix.EOPNOTSUPP
}