podman/vendor/github.com/Microsoft/go-winio
dependabot-preview[bot] 1f0cc866d4
Bump github.com/containers/storage from 1.19.1 to 1.19.2
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.19.1 to 1.19.2.
- [Release notes](https://github.com/containers/storage/releases)
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md)
- [Commits](https://github.com/containers/storage/compare/v1.19.1...v1.19.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-05-14 07:23:58 -04:00
..
archive/tar
backuptar
pkg/guid Update c/image to v4.0.1 and buildah to 1.11.3 2019-10-04 20:18:23 +02:00
vhd Bump github.com/containers/storage from 1.19.1 to 1.19.2 2020-05-14 07:23:58 -04:00
.gitignore
LICENSE
README.md
backup.go
ea.go
file.go Update c/image to v4.0.1 and buildah to 1.11.3 2019-10-04 20:18:23 +02:00
fileinfo.go
go.mod Bump to Buildah v1.11.5 2019-11-13 10:57:19 -05:00
go.sum Bump to Buildah v1.11.5 2019-11-13 10:57:19 -05:00
hvsock.go Update c/image to v4.0.1 and buildah to 1.11.3 2019-10-04 20:18:23 +02:00
pipe.go cgroupsns was not following containers.conf 2020-05-01 15:00:33 -04:00
privilege.go
reparse.go
sd.go
syscall.go Update c/image to v4.0.1 and buildah to 1.11.3 2019-10-04 20:18:23 +02:00
zsyscall_windows.go Update c/image to v4.0.1 and buildah to 1.11.3 2019-10-04 20:18:23 +02: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.