kubernetes/vendor/github.com/Microsoft/go-winio
Eddie Zaneski f951b4c3f3
Update Microsoft/go-winio to released version
Move off a pinned hash to a cut version

Signed-off-by: Eddie Zaneski <eddiezane@gmail.com>
2020-11-05 09:09:26 -07:00
..
pkg/guid Update go-winio module version from 0.4.11 to 0.4.14 2019-11-29 08:12:42 +08:00
vhd Update hcsshim to v0.8.9 2020-05-19 19:53:55 -04:00
.gitignore
backup.go
BUILD Update hcsshim to v0.8.9 2020-05-19 19:53:55 -04:00
ea.go Update hcsshim and gowinio for Windows Overlay 2019-02-05 10:39:23 -08:00
file.go Update go-winio module version from 0.4.11 to 0.4.14 2019-11-29 08:12:42 +08:00
fileinfo.go Update hcsshim and gowinio for Windows Overlay 2019-02-05 10:39:23 -08:00
go.mod Updating dependency github.com/Microsoft/go-winio to version v0.4.15-0.20190919025122-fc70bd9a86b5 2020-03-25 12:09:41 -04:00
go.sum Updating dependency github.com/Microsoft/go-winio to version v0.4.15-0.20190919025122-fc70bd9a86b5 2020-03-25 12:09:41 -04:00
hvsock.go Update go-winio module version from 0.4.11 to 0.4.14 2019-11-29 08:12:42 +08:00
LICENSE
pipe.go Update Microsoft/go-winio to released version 2020-11-05 09:09:26 -07:00
privilege.go
README.md
reparse.go
sd.go
syscall.go Update go-winio module version from 0.4.11 to 0.4.14 2019-11-29 08:12:42 +08:00
zsyscall_windows.go Update go-winio module version from 0.4.11 to 0.4.14 2019-11-29 08:12:42 +08:00

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.