open-vault/vendor/github.com/Microsoft/go-winio
Hridoy Roy 2da7de2fec
Minimal changes to solve Dependency CVEs [VAULT-871] (#11015)
* minimal changes to solve most of the cves

* cleanup

* finished go mod vendor upgrades
2021-03-01 14:35:40 -08:00
..
pkg/guid Updating plugin deps 2019-08-14 17:23:29 -04:00
.gitignore Switch to go modules (#6585) 2019-04-13 03:44:06 -04:00
backup.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
ea.go Update Deps (#5454) 2018-10-03 09:55:26 -07:00
file.go Updating plugin deps 2019-08-14 17:23:29 -04:00
fileinfo.go Update Deps (#5454) 2018-10-03 09:55:26 -07:00
go.mod Minimal changes to solve Dependency CVEs [VAULT-871] (#11015) 2021-03-01 14:35:40 -08:00
go.sum Minimal changes to solve Dependency CVEs [VAULT-871] (#11015) 2021-03-01 14:35:40 -08:00
hvsock.go Updating plugin deps 2019-08-14 17:23:29 -04:00
LICENSE Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
pipe.go Minimal changes to solve Dependency CVEs [VAULT-871] (#11015) 2021-03-01 14:35:40 -08:00
privilege.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
README.md Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
reparse.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
sd.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
syscall.go Updating plugin deps 2019-08-14 17:23:29 -04:00
zsyscall_windows.go Updating plugin deps 2019-08-14 17:23:29 -04: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.