blob: 256fa3d6717fdfe0117db5e120fbb66460570b71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}
|