xtaci / smux

A Stream Multiplexing Library for golang with least memory usage(TDMA)
MIT License
1.27k stars 189 forks source link

Multiplexing over SCTP unordered mode #95

Closed rucciva closed 1 year ago

rucciva commented 1 year ago

Hi, first of all, thanks for creating this library.

So i'm planning to forward UDP packet from multiple connections via SCTP (unordered) connection to remote UDP servers, something like SSH Tunnel but for UDP. Will this library runs fine when the underlying transport protocol does not guarantee order of packet?

xtaci commented 1 year ago

No, it's not multiplexing's responsibility to guarantee the order of packets, you may need https://github.com/xtaci/kcp-go

rucciva commented 1 year ago

noted, thanks @xtaci