github.com/hashicorp/go-plugin@v1.6.0/constants.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  package plugin
     5  
     6  const (
     7  	// EnvUnixSocketDir specifies the directory that _plugins_ should create unix
     8  	// sockets in. Does not affect client behavior.
     9  	EnvUnixSocketDir = "PLUGIN_UNIX_SOCKET_DIR"
    10  
    11  	// EnvUnixSocketGroup specifies the owning, writable group to set for Unix
    12  	// sockets created by _plugins_. Does not affect client behavior.
    13  	EnvUnixSocketGroup = "PLUGIN_UNIX_SOCKET_GROUP"
    14  
    15  	envMultiplexGRPC = "PLUGIN_MULTIPLEX_GRPC"
    16  )