c9e99c432d | ||
---|---|---|
.. | ||
.travis.yml | ||
LICENSE | ||
README.md | ||
codecov.yml | ||
deadline.go | ||
go.mod | ||
go.sum | ||
multiplex.go | ||
stream.go |
README.md
go-mplex
A super simple stream muxing library implementing mplex.
Usage
mplex := multiplex.NewMultiplex(mysocket)
s, _ := mplex.NewStream()
s.Write([]byte("Hello World!"))
s.Close()
os, _ := mplex.Accept()
// echo back everything received
io.Copy(os, os)
The last gx published version of this module was: 0.2.35: QmWGQQ6Tz8AdUpxktLf3zgnVN9Vy8fcWVezZJSU3ZmiANj