mirror of
https://github.com/containers/podman.git
synced 2025-11-02 23:39:52 +08:00
Add API for communicating with Docker volume plugins
Docker provides extensibility through a plugin system, of which several types are available. This provides an initial library API for communicating with one type of plugins, volume plugins. Volume plugins allow for an external service to create and manage a volume on Podman's behalf. This does not integrate the plugin system into Libpod or Podman yet; that will come in subsequent pull requests. Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
13
vendor/github.com/docker/go-plugins-helpers/sdk/windows_pipe_config.go
generated
vendored
Normal file
13
vendor/github.com/docker/go-plugins-helpers/sdk/windows_pipe_config.go
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
package sdk
|
||||
|
||||
// WindowsPipeConfig is a helper structure for configuring named pipe parameters on Windows.
|
||||
type WindowsPipeConfig struct {
|
||||
// SecurityDescriptor contains a Windows security descriptor in SDDL format.
|
||||
SecurityDescriptor string
|
||||
|
||||
// InBufferSize in bytes.
|
||||
InBufferSize int32
|
||||
|
||||
// OutBufferSize in bytes.
|
||||
OutBufferSize int32
|
||||
}
|
||||
Reference in New Issue
Block a user