1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libnetwork/vendor/github.com/Microsoft/go-winio
Sebastiaan van Stijn f864421ead bump docker/docker to master and unfork dependencies
This patch updates all dependencies to match what is
used in moby/moby. Making the dependencies match
what is used in that repository makes sure we test
with the same version as libnetwork is later built
with in moby.

This also gets rid of some temporary forks that were
needed during the migration of Sirupsen/logrus to
sirupsen/logrus.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-10-25 17:26:25 +02:00
..
backup.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
ea.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
file.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
fileinfo.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
LICENSE Use vndr for managing libnetwork dependencies 2017-01-11 17:22:05 -08:00
pipe.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
privilege.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
README.md Re-run vndr with latest version 2017-03-21 15:42:30 -04:00
reparse.go Use vndr for managing libnetwork dependencies 2017-01-11 17:22:05 -08:00
sd.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
syscall.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
zsyscall_windows.go bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +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.