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 }