Named Pipes in Go for both Windows and Linux

后端 未结 2 674
花落未央
花落未央 2020-12-31 19:14

I am new to Go, I want to create Named Pipes implementation in Go which works on both Windows and Linux.

I managed to get the code working on Ubuntu, but this one do

2条回答
  •  独厮守ぢ
    2020-12-31 20:00

    According to https://github.com/golang/go/issues/3599

    nate's package looks nice, and anyone can "go get" it.

    A Windows named pipe implementation written in pure Go:
    https://github.com/natefinch/npipe

    Which has inspired (Win32 IO-related utilities for Go):
    https://github.com/Microsoft/go-winio

提交回复
热议问题