Re: [go-nuts] Go multiplexers

2022-08-21 Thread Brian Candler
> Can you tell me how I can figure out what it speaks? Finding that information doesn't appear to be hard: https://github.com/hashicorp/yamux#specification "The full specification for Yamux is provided in the spec.md file. It can be use

Re: [go-nuts] Go multiplexers

2022-08-20 Thread ramki...@hotmail.com
Also, by chance do you know of an alternative that would provide multiple streams for a connection that happens different protocols or for TCP? On Saturday, August 20, 2022 at 7:01:00 PM UTC-4 se...@liao.dev wrote: > yamux uses its own protocol, it doesn't speak telnet > > - sean > > On Sat, Aug

Re: [go-nuts] Go multiplexers

2022-08-20 Thread ramki...@hotmail.com
Can you tell me how I can figure out what it speaks? On Saturday, August 20, 2022 at 7:01:00 PM UTC-4 se...@liao.dev wrote: > yamux uses its own protocol, it doesn't speak telnet > > - sean > > On Sat, Aug 20, 2022, 21:31 ramki...@hotmail.com > wrote: > >> Has anyone ever used a multiplexer

Re: [go-nuts] Go multiplexers

2022-08-20 Thread 'Sean Liao' via golang-nuts
yamux uses its own protocol, it doesn't speak telnet - sean On Sat, Aug 20, 2022, 21:31 ramki...@hotmail.com wrote: > Has anyone ever used a multiplexer ? > When creating a TCP server using multiplexer, I get an error [ERR] yamux: > Invalid protocol version:

[go-nuts] Go multiplexers

2022-08-20 Thread ramki...@hotmail.com
Has anyone ever used a multiplexer ? When creating a TCP server using multiplexer, I get an error [ERR] yamux: Invalid protocol version: 102 when using Telnet to connect to the server. package main import ( "fmt" "net" "github.com/hashicorp/yamux