DockerCLI/vendor/github.com/Microsoft/go-winio
Sebastiaan van Stijn 0ebdad7492
vendor: github.com/containerd/containerd v1.5.3 to reduce indirect dependencies
full diff: https://github.com/containerd/containerd/compare/v1.5.2...v1.5.3

This removes the hcsshim dependency and other dependencies coming from that.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-07-14 17:46:16 +02:00
..
pkg/guid vendor: github.com/containerd/containerd v1.5.3 to reduce indirect dependencies 2021-07-14 17:46:16 +02:00
LICENSE Add vendor 2017-04-17 18:12:58 -04:00
README.md vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02: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 vendor: update go-winio to v0.4.14 2019-10-02 17:47:27 +00:00
fileinfo.go vndr docker/docker to 53e55db 2018-09-06 00:44:39 +00:00
go.mod vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02:00
hvsock.go vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02:00
pipe.go vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02:00
privilege.go vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02: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 vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02:00
zsyscall_windows.go vendor: github.com/Microsoft/go-winio v0.4.19 2021-06-21 14:29:53 +02:00

README.md

go-winio Build Status

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.