automation-tests/vendor/github.com/Microsoft/go-winio
dependabot[bot] 94665bdf01
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 07:25:04 +00:00
..
backuptar Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
pkg Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
vhd Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
.gitignore migrate to go-modules 2019-06-24 13:20:59 +02:00
CODEOWNERS Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
LICENSE Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
README.md Bump github.com/containers/storage from 1.31.1 to 1.31.2 2021-05-21 07:25:04 +00:00
backup.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
ea.go vendor: update everything 2019-01-11 13:38:11 +01:00
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 Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
go.mod Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
go.sum Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
hvsock.go Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
pipe.go Bump github.com/containers/storage from 1.24.3 to 1.24.4 2020-12-23 04:29:57 -05:00
privilege.go Bump github.com/containers/storage from 1.31.1 to 1.31.2 2021-05-21 07:25:04 +00:00
reparse.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
sd.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
syscall.go Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01:00
zsyscall_windows.go Bump github.com/containers/storage from 1.25.0 to 1.28.0 2021-03-18 20:27:25 +01: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.