ipld-eth-server/vendor/github.com/libp2p/go-libp2p-mplex/multiplex.go
Elizabeth Engelman 36533f7c3f Update vendor directory and make necessary code changes
Fixes for new geth version
2019-09-25 16:32:27 -05:00

43 lines
905 B
Go

package peerstream_multiplex
import (
"net"
"github.com/libp2p/go-libp2p-core/mux"
mp "github.com/libp2p/go-mplex"
)
type conn struct {
*mp.Multiplex
}
func (c *conn) Close() error {
return c.Multiplex.Close()
}
func (c *conn) IsClosed() bool {
return c.Multiplex.IsClosed()
}
// OpenStream creates a new stream.
func (c *conn) OpenStream() (mux.MuxedStream, error) {
return c.Multiplex.NewStream()
}
// AcceptStream accepts a stream opened by the other side.
func (c *conn) AcceptStream() (mux.MuxedStream, error) {
return c.Multiplex.Accept()
}
// Transport is a go-peerstream transport that constructs
// multiplex-backed connections.
type Transport struct{}
// DefaultTransport has default settings for multiplex
var DefaultTransport = &Transport{}
func (t *Transport) NewConn(nc net.Conn, isServer bool) (mux.MuxedConn, error) {
return &conn{mp.NewMultiplex(nc, isServer)}, nil
}