docker-cli-openbsd/vendor/github.com/Microsoft/go-winio
Sebastiaan van Stijn 5735fff6fc
Bump moby to f4d4f5863156b82ef146b6ff1e845f8dcf019f12
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-11-08 17:50:58 +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 Bump moby to f4d4f5863156b82ef146b6ff1e845f8dcf019f12 2017-11-08 17:50:58 +01:00
file.go Bump moby to f4d4f5863156b82ef146b6ff1e845f8dcf019f12 2017-11-08 17:50:58 +01:00
fileinfo.go Move back to upstream go-winio which includes the 2017-05-09 16:01:55 -07:00
pipe.go Bump moby to f4d4f5863156b82ef146b6ff1e845f8dcf019f12 2017-11-08 17:50:58 +01: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 Bump go-winio to 0.4.2 2017-07-03 14:37:56 -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.