blob: 7033a2a0c6d9b6c82bd103393ad0e5966c9d60b3 [file] [log] [blame]
//go:build !windows && !linux
package socket
import (
"os"
"path/filepath"
)
func socketName(basename string) string {
// Because abstract sockets are unavailable, use a socket path in the
// system temporary directory.
return filepath.Join(os.TempDir(), basename)
}