2016-03-17 17:41:08 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package xattr
|
|
|
|
|
2016-12-08 01:07:59 +00:00
|
|
|
// Get would return the extended attributes, but this unsupported feature
|
|
|
|
// returns nil, nil
|
2016-03-17 17:41:08 +00:00
|
|
|
func Get(path, name string) ([]byte, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2016-12-08 01:07:59 +00:00
|
|
|
|
|
|
|
// Set would set the extended attributes, but this unsupported feature returns
|
|
|
|
// nil
|
2016-03-17 17:41:08 +00:00
|
|
|
func Set(path, name string, value []byte) error {
|
|
|
|
return nil
|
|
|
|
}
|
2016-12-08 01:07:59 +00:00
|
|
|
|
|
|
|
// List would return the keys of extended attributes, but this unsupported
|
|
|
|
// feature returns nil, nil
|
2016-03-17 17:41:08 +00:00
|
|
|
func List(path string) ([]string, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|