Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.github/workflows/ | H | 22-Apr-2021 | - | 24 | 21 | |
backuptar/ | H | 22-Apr-2021 | - | 613 | 504 | |
pkg/ | H | 22-Apr-2021 | - | 5,073 | 3,760 | |
tools/etw-provider-gen/ | H | 22-Apr-2021 | - | 34 | 24 | |
vhd/ | H | 22-Apr-2021 | - | 1,390 | 1,090 | |
wim/ | H | 22-Apr-2021 | - | 1,677 | 1,339 | |
.gitignore | H A D | 22-Apr-2021 | 6 | 2 | 1 | |
CODEOWNERS | H A D | 22-Apr-2021 | 29 | 2 | 1 | |
LICENSE | H A D | 22-Apr-2021 | 1.1 KiB | 23 | 17 | |
README.md | H A D | 22-Apr-2021 | 1.2 KiB | 23 | 17 | |
backup.go | H A D | 22-Apr-2021 | 7.9 KiB | 281 | 222 | |
backup_test.go | H A D | 22-Apr-2021 | 4.3 KiB | 258 | 227 | |
ea.go | H A D | 22-Apr-2021 | 3.1 KiB | 138 | 113 | |
ea_test.go | H A D | 22-Apr-2021 | 2.1 KiB | 92 | 80 | |
file.go | H A D | 22-Apr-2021 | 7.8 KiB | 324 | 247 | |
fileinfo.go | H A D | 22-Apr-2021 | 2.1 KiB | 62 | 43 | |
go.mod | H A D | 22-Apr-2021 | 177 | 10 | 7 | |
go.sum | H A D | 22-Apr-2021 | 1.2 KiB | 15 | 14 | |
hvsock.go | H A D | 22-Apr-2021 | 7.4 KiB | 308 | 219 | |
pipe.go | H A D | 22-Apr-2021 | 13.8 KiB | 518 | 393 | |
pipe_test.go | H A D | 22-Apr-2021 | 10.5 KiB | 575 | 501 | |
privilege.go | H A D | 22-Apr-2021 | 5.3 KiB | 204 | 163 | |
privileges_test.go | H A D | 22-Apr-2021 | 441 | 20 | 14 | |
reparse.go | H A D | 22-Apr-2021 | 3.4 KiB | 129 | 103 | |
sd.go | H A D | 22-Apr-2021 | 3.2 KiB | 99 | 76 | |
sd_test.go | H A D | 22-Apr-2021 | 742 | 29 | 22 | |
syscall.go | H A D | 22-Apr-2021 | 169 | 4 | 1 | |
zsyscall_windows.go | H A D | 22-Apr-2021 | 18.2 KiB | 446 | 387 |
README.md
1# go-winio [![Build Status](https://github.com/microsoft/go-winio/actions/workflows/ci.yml/badge.svg)](https://github.com/microsoft/go-winio/actions/workflows/ci.yml) 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