automation-tests/common/vendor/github.com/Microsoft/go-winio
dependabot[bot] 42c6ecab17 build(deps): bump github.com/containers/storage from 1.31.1 to 1.31.2
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.31.1 to 1.31.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.31.1...v1.31.2)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-21 06:42:42 +00:00
..
backuptar new libimage package 2021-04-21 11:17:47 +02:00
pkg new libimage package 2021-04-21 11:17:47 +02:00
vhd new libimage package 2021-04-21 11:17:47 +02:00
.gitignore Add config package for containers.conf 2019-10-07 13:38:17 -04:00
CODEOWNERS Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04:00
LICENSE Add config package for containers.conf 2019-10-07 13:38:17 -04:00
README.md build(deps): bump github.com/containers/storage from 1.31.1 to 1.31.2 2021-05-21 06:42:42 +00:00
backup.go Add config package for containers.conf 2019-10-07 13:38:17 -04:00
ea.go Add config package for containers.conf 2019-10-07 13:38:17 -04:00
file.go add libpod.conf to containers.conf 2019-12-06 15:55:47 -05:00
fileinfo.go Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04:00
go.mod Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04:00
go.sum Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04:00
hvsock.go Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04:00
pipe.go Bump github.com/containers/storage from 1.24.3 to 1.24.4 2020-12-23 16:00:00 -05:00
privilege.go build(deps): bump github.com/containers/storage from 1.31.1 to 1.31.2 2021-05-21 06:42:42 +00:00
reparse.go Add config package for containers.conf 2019-10-07 13:38:17 -04:00
sd.go Add config package for containers.conf 2019-10-07 13:38:17 -04:00
syscall.go Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04:00
zsyscall_windows.go Bump github.com/containers/storage from 1.27.0 to 1.28.0 2021-03-17 05:31:57 -04: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.