1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/vendor/src/github.com/Microsoft/go-winio
John Starks 845dce8465 Windows: Revendor github.com/Microsoft/go-winio
This fixes docker save when the daemon was launched from a remote
PowerShell session.

Signed-off-by: John Starks <jostarks@microsoft.com>
2016-03-08 12:27:48 -08:00
..
archive/tar Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
backuptar Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
backup.go Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
file.go Revendor Microsoft/hcsshim and vendor Microsoft/go-winio 2016-02-01 23:11:25 +00:00
fileinfo.go Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
LICENSE Revendor Microsoft/hcsshim and vendor Microsoft/go-winio 2016-02-01 23:11:25 +00:00
pipe.go Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
privilege.go Windows: Revendor github.com/Microsoft/go-winio 2016-03-08 12:27:48 -08:00
README.md Revendor Microsoft/hcsshim and vendor Microsoft/go-winio 2016-02-01 23:11:25 +00:00
reparse.go Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
sd.go Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
syscall.go Revendor Microsoft/go-winio and Microsoft/hcsshim 2016-03-02 14:17:13 -08:00
zsyscall.go Windows: Revendor github.com/Microsoft/go-winio 2016-03-08 12:27:48 -08: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.

Thanks to natefinch for the inspiration for this library. See https://github.com/natefinch/npipe for another named pipe implementation.