github.1git.de/docker/cli@v26.1.3+incompatible/cli-plugins/socket/socket_abstract.go (about)

     1  //go:build windows || linux
     2  
     3  package socket
     4  
     5  func socketName(basename string) string {
     6  	// Address of an abstract socket -- this socket can be opened by name,
     7  	// but is not present in the filesystem.
     8  	return "@" + basename
     9  }