orbiter/vendor/github.com/Microsoft/go-winio
Lorenzo Fontana 3b7a061574
Sync dependencies with ensure
Remove old lock file

Signed-off-by: Lorenzo Fontana <lo@linux.com>
2017-08-21 00:14:21 +02:00
..
archive/tar Sync dependencies with ensure 2017-08-21 00:14:21 +02:00
backuptar Sync dependencies with ensure 2017-08-21 00:14:21 +02:00
wim Sync dependencies with ensure 2017-08-21 00:14:21 +02:00
.gitignore First commit 2017-02-21 00:07:57 +00:00
backup_test.go First commit 2017-02-21 00:07:57 +00:00
backup.go Updated dep version and dependencies 2017-07-10 10:33:29 +02:00
file.go Updated dep version and dependencies 2017-07-10 10:33:29 +02:00
fileinfo.go Updated dep version and dependencies 2017-07-10 10:33:29 +02:00
LICENSE First commit 2017-02-21 00:07:57 +00:00
pipe_test.go Updated dep version and dependencies 2017-07-10 10:33:29 +02:00
pipe.go Updated dep version and dependencies 2017-07-10 10:33:29 +02:00
privilege.go First commit 2017-02-21 00:07:57 +00:00
privileges_test.go First commit 2017-02-21 00:07:57 +00:00
README.md First commit 2017-02-21 00:07:57 +00:00
reparse.go First commit 2017-02-21 00:07:57 +00:00
sd_test.go First commit 2017-02-21 00:07:57 +00:00
sd.go First commit 2017-02-21 00:07:57 +00:00
syscall.go First commit 2017-02-21 00:07:57 +00:00
zsyscall_windows.go Updated dep version and dependencies 2017-07-10 10:33:29 +02: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.