windows_pipe_config.go 343 B

12345678910111213
  1. package sdk
  2. // WindowsPipeConfig is a helper structure for configuring named pipe parameters on Windows.
  3. type WindowsPipeConfig struct {
  4. // SecurityDescriptor contains a Windows security descriptor in SDDL format.
  5. SecurityDescriptor string
  6. // InBufferSize in bytes.
  7. InBufferSize int32
  8. // OutBufferSize in bytes.
  9. OutBufferSize int32
  10. }