Named Pipes in Go for both Windows and Linux

后端 未结 2 664
花落未央
花落未央 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 19:56

    There is an implementation of named pipes for Windows in Go from Microsoft:

    https://github.com/Microsoft/go-winio

    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题