DockerCLI/vendor/github.com/Microsoft/go-winio
Sebastiaan van Stijn f353eeb544
Update containerd to 1.2.1
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2019-02-02 13:30:55 +01:00
..
LICENSE Add vendor 2017-04-17 18:12:58 -04:00
README.md Add vendor 2017-04-17 18:12:58 -04:00
backup.go Bump moby to f4d4f5863156b82ef146b6ff1e845f8dcf019f12 2017-11-08 17:50:58 +01:00
ea.go Update containerd to 1.2.1 2019-02-02 13:30:55 +01:00
file.go Updated the go-winio library to release 0.4.8 that has the fix for Windows containers 2018-06-29 10:49:52 -07:00
fileinfo.go vndr docker/docker to 53e55db 2018-09-06 00:44:39 +00:00
pipe.go Bump some dependencies to more recent versions (and tagged if available) 2018-07-25 14:16:41 +02:00
privilege.go Add vendor 2017-04-17 18:12:58 -04:00
reparse.go Add vendor 2017-04-17 18:12:58 -04:00
sd.go Add vendor 2017-04-17 18:12:58 -04:00
syscall.go Add vendor 2017-04-17 18:12:58 -04:00
zsyscall_windows.go Updated the go-winio library to release 0.4.8 that has the fix for Windows containers 2018-06-29 10:49:52 -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.