open-nomad/vendor/github.com/Microsoft/go-winio
Seth Hoenig 435c0d9fc8 deps: Switch to Go modules for dependency management
This PR switches the Nomad repository from using govendor to Go modules
for managing dependencies. Aspects of the Nomad workflow remain pretty
much the same. The usual Makefile targets should continue to work as
they always did. The API submodule simply defers to the parent Nomad
version on the repository, keeping the semantics of API versioning that
currently exists.
2020-06-02 14:30:36 -05:00
..
pkg/guid vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
.gitignore deps: Switch to Go modules for dependency management 2020-06-02 14:30:36 -05:00
backup.go fifo: add new fifo package for named pipes (#4665) 2018-10-16 16:53:30 -07:00
ea.go fifo: add new fifo package for named pipes (#4665) 2018-10-16 16:53:30 -07:00
file.go vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
fileinfo.go fifo: add new fifo package for named pipes (#4665) 2018-10-16 16:53:30 -07:00
go.mod vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
go.sum vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
hvsock.go vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
LICENSE
pipe.go vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
privilege.go
README.md
reparse.go
sd.go
syscall.go vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02:00
zsyscall_windows.go vendor: Use dani fork of go-winio 2019-06-28 13:47:18 +02: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.