Sign in
◑
Theme
chromium
/
external
/
github.com
/
docker
/
cli
/
0f0e561a3fd49091575fd9281f7d2e668d3a4532
/
.
/
cli-plugins
/
socket
/
socket_abstract.go
blob: a0276fa9c11a76dbd180168f25275edf2f97fb1b [
file
]
//go:build windows || linux
package socket
func socketName(basename string) string {
// Address of an abstract socket -- this socket can be opened by name,
// but is not present in the filesystem.
return "@" + basename
}