teleport/vendor/github.com/Microsoft/go-winio
Andrew Lytvynov efc99a068c Update Go dependencies
Several dependencies can't be updated due to breakages (etcd and grpc
for example).

Also updated ttlmap usage since their API changed.
2021-02-23 18:04:55 -08:00
..
pkg/guid Update Go dependencies 2021-02-23 18:04:55 -08:00
.gitignore Re-vendor dependencies with go mod 2020-07-17 16:09:23 +00:00
backup.go Vendor github.com/Microsoft/go-winio. 2018-08-03 11:06:08 -07:00
ea.go Update Go dependencies 2021-02-23 18:04:55 -08:00
file.go Update Go dependencies 2021-02-23 18:04:55 -08:00
fileinfo.go Update Go dependencies 2021-02-23 18:04:55 -08:00
go.mod Update Go dependencies 2021-02-23 18:04:55 -08:00
go.sum Update Go dependencies 2021-02-23 18:04:55 -08:00
hvsock.go Update Go dependencies 2021-02-23 18:04:55 -08:00
LICENSE Vendor github.com/Microsoft/go-winio. 2018-08-03 11:06:08 -07:00
pipe.go Update Go dependencies 2021-02-23 18:04:55 -08:00
privilege.go Vendor github.com/Microsoft/go-winio. 2018-08-03 11:06:08 -07:00
README.md Re-vendor dependencies with go mod 2020-07-17 16:09:23 +00:00
reparse.go Vendor github.com/Microsoft/go-winio. 2018-08-03 11:06:08 -07:00
sd.go Vendor github.com/Microsoft/go-winio. 2018-08-03 11:06:08 -07:00
syscall.go Update Go dependencies 2021-02-23 18:04:55 -08:00
zsyscall_windows.go Update Go dependencies 2021-02-23 18:04:55 -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.