buildkit/vendor/github.com/Microsoft/go-winio
Tibor Vass ad8b35e3d4 Migrate from vndr to go mod
go get -u github.com/tiborvass/gomod
  GO111MODULE=on gomod init
  GO111MODULE=on go mod tidy
  GO111MODULE=on go mod vendor

Signed-off-by: Tibor Vass <tibor@docker.com>
2019-01-31 22:44:47 +00:00
..
.gitignore Migrate from vndr to go mod 2019-01-31 22:44:47 +00:00
LICENSE control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
README.md control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
backup.go vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
ea.go Revendoring to move boltdb to bbolt 2018-09-18 11:18:08 -07:00
file.go Update containerd and dependencies 2018-06-04 10:14:06 -07:00
fileinfo.go Update containerd vendor 2018-08-28 14:26:14 -07:00
pipe.go Update containerd vendor 2018-08-28 14:26:14 -07:00
privilege.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
reparse.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
sd.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
syscall.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
zsyscall_windows.go Update containerd and dependencies 2018-06-04 10:14:06 -07:00

README.md

go-winio

This repository contains utilities for efficiently performing Win32 IO operations in Go. Currently, this is focused on accessing named pipes and other file handles, and for using named pipes as a net transport.

This code relies on IO completion ports to avoid blocking IO on system threads, allowing Go to reuse the thread to schedule another goroutine. This limits support to Windows Vista and newer operating systems. This is similar to the implementation of network sockets in Go's net package.

Please see the LICENSE file for licensing information.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Thanks to natefinch for the inspiration for this library. See https://github.com/natefinch/npipe for another named pipe implementation.