13 lines
487 B
Go
13 lines
487 B
Go
//go:build linux || ignore || aix || ignore || android || ignore || darwin || ignore || freebsd || ignore || hurd || ignore || illumos || ignore || ios || ignore || netbsd || ignore || openbsd || ignore || solaris
|
|
// +build linux ignore aix ignore android ignore darwin ignore freebsd ignore hurd ignore illumos ignore ios ignore netbsd ignore openbsd ignore solaris
|
|
|
|
package machine
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func isUnixSocket(file os.DirEntry) bool {
|
|
return file.Type()&os.ModeSocket != 0
|
|
}
|