github.com/khulnasoft/cli@v0.0.0-20240402070845-01bcad7beefa/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  }