• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

archive/tar/H23-Aug-2018-

backuptar/H23-Aug-2018-

vhd/H23-Aug-2018-

wim/H23-Aug-2018-

.gitignoreH A D23-Aug-20186

LICENSEH A D23-Aug-20181.1 KiB

README.mdH A D23-Aug-20181 KiB

backup.goH A D23-Aug-20187.9 KiB

backup_test.goH A D23-Aug-20184.3 KiB

ea.goH A D23-Aug-20183.1 KiB

ea_test.goH A D23-Aug-20182.1 KiB

file.goH A D23-Aug-20187.2 KiB

fileinfo.goH A D23-Aug-20182.1 KiB

pipe.goH A D23-Aug-201811.5 KiB

pipe_test.goH A D23-Aug-20189.3 KiB

privilege.goH A D23-Aug-20185.3 KiB

privileges_test.goH A D23-Aug-2018422

reparse.goH A D23-Aug-20183.4 KiB

sd.goH A D23-Aug-20183.2 KiB

sd_test.goH A D23-Aug-2018723

syscall.goH A D23-Aug-2018162

zsyscall_windows.goH A D23-Aug-201817.4 KiB

README.md

1# go-winio
2
3This repository contains utilities for efficiently performing Win32 IO operations in
4Go. Currently, this is focused on accessing named pipes and other file handles, and
5for using named pipes as a net transport.
6
7This code relies on IO completion ports to avoid blocking IO on system threads, allowing Go
8to reuse the thread to schedule another goroutine. This limits support to Windows Vista and
9newer operating systems. This is similar to the implementation of network sockets in Go's net
10package.
11
12Please see the LICENSE file for licensing information.
13
14This project has adopted the [Microsoft Open Source Code of
15Conduct](https://opensource.microsoft.com/codeofconduct/). For more information
16see the [Code of Conduct
17FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact
18[opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional
19questions or comments.
20
21Thanks to natefinch for the inspiration for this library. See https://github.com/natefinch/npipe
22for another named pipe implementation.
23