2018-07-04 10:51:47 +00:00
|
|
|
package sm_yamux
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"net"
|
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
mux "github.com/libp2p/go-libp2p-core/mux"
|
2021-06-16 20:19:45 +00:00
|
|
|
"github.com/libp2p/go-yamux/v2"
|
2018-07-04 10:51:47 +00:00
|
|
|
)
|
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
var DefaultTransport *Transport
|
2018-07-04 10:51:47 +00:00
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
func init() {
|
|
|
|
config := yamux.DefaultConfig()
|
|
|
|
// We've bumped this to 16MiB as this critically limits throughput.
|
|
|
|
//
|
|
|
|
// 1MiB means a best case of 10MiB/s (83.89Mbps) on a connection with
|
|
|
|
// 100ms latency. The default gave us 2.4MiB *best case* which was
|
|
|
|
// totally unacceptable.
|
|
|
|
config.MaxStreamWindowSize = uint32(16 * 1024 * 1024)
|
|
|
|
// don't spam
|
|
|
|
config.LogOutput = ioutil.Discard
|
|
|
|
// We always run over a security transport that buffers internally
|
|
|
|
// (i.e., uses a block cipher).
|
|
|
|
config.ReadBufSize = 0
|
|
|
|
DefaultTransport = (*Transport)(config)
|
|
|
|
}
|
|
|
|
|
2021-06-16 20:19:45 +00:00
|
|
|
// Transport implements mux.Multiplexer that constructs
|
|
|
|
// yamux-backed muxed connections.
|
|
|
|
type Transport yamux.Config
|
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
func (t *Transport) NewConn(nc net.Conn, isServer bool) (mux.MuxedConn, error) {
|
2018-07-04 10:51:47 +00:00
|
|
|
var s *yamux.Session
|
|
|
|
var err error
|
|
|
|
if isServer {
|
|
|
|
s, err = yamux.Server(nc, t.Config())
|
|
|
|
} else {
|
|
|
|
s, err = yamux.Client(nc, t.Config())
|
|
|
|
}
|
|
|
|
return (*conn)(s), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Transport) Config() *yamux.Config {
|
|
|
|
return (*yamux.Config)(t)
|
|
|
|
}
|
2021-06-16 20:19:45 +00:00
|
|
|
|
|
|
|
var _ mux.Multiplexer = &Transport{}
|