/
githubmirror
/
syncthing
Обзор
Документация
Войти
/
githubmirror
/
syncthing
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/fs/basicfs_xattr_linuxish.go
42 строки
1 KB
Jakob Borg
chore: style fixes from `go fix` (#10846)
05 авг 2026, 21:23
Не верифицирован
05 авг 2026, 21:23
8ea09c0
Код
Авторство
О чём код?
// Copyright (C) 2022 The Syncthing Authors. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at https://mozilla.org/MPL/2.0/. //go:build linux || darwin package fs import ( "errors" "fmt" "slices" "strings" "golang.org/x/sys/unix" ) func listXattr(path string) ([]string, error) { buf := make([]byte, 1024) size, err := unix.Llistxattr(path, buf) if errors.Is(err, unix.ERANGE) { // Buffer is too small. Try again with a zero sized buffer to get // the size, then allocate a buffer of the correct size. size, err = unix.Llistxattr(path, nil) if err != nil { return nil, fmt.Errorf("Listxattr %s: %w", path, err) } buf = make([]byte, size) size, err = unix.Llistxattr(path, buf) } if err != nil { return nil, fmt.Errorf("Listxattr %s: %w", path, err) } buf = buf[:size] attrs := compact(strings.Split(string(buf), "\x00")) slices.Sort(attrs) return attrs, nil }