mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
66 lines
1.4 KiB
Go
66 lines
1.4 KiB
Go
|
package upgrader
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/libp2p/go-libp2p/core/network"
|
||
|
"github.com/libp2p/go-libp2p/core/protocol"
|
||
|
"github.com/libp2p/go-libp2p/core/transport"
|
||
|
)
|
||
|
|
||
|
type transportConn struct {
|
||
|
network.MuxedConn
|
||
|
network.ConnMultiaddrs
|
||
|
network.ConnSecurity
|
||
|
transport transport.Transport
|
||
|
scope network.ConnManagementScope
|
||
|
stat network.ConnStats
|
||
|
|
||
|
muxer protocol.ID
|
||
|
security protocol.ID
|
||
|
usedEarlyMuxerNegotiation bool
|
||
|
}
|
||
|
|
||
|
var _ transport.CapableConn = &transportConn{}
|
||
|
|
||
|
func (t *transportConn) Transport() transport.Transport {
|
||
|
return t.transport
|
||
|
}
|
||
|
|
||
|
func (t *transportConn) String() string {
|
||
|
ts := ""
|
||
|
if s, ok := t.transport.(fmt.Stringer); ok {
|
||
|
ts = "[" + s.String() + "]"
|
||
|
}
|
||
|
return fmt.Sprintf(
|
||
|
"<stream.Conn%s %s (%s) <-> %s (%s)>",
|
||
|
ts,
|
||
|
t.LocalMultiaddr(),
|
||
|
t.LocalPeer(),
|
||
|
t.RemoteMultiaddr(),
|
||
|
t.RemotePeer(),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
func (t *transportConn) Stat() network.ConnStats {
|
||
|
return t.stat
|
||
|
}
|
||
|
|
||
|
func (t *transportConn) Scope() network.ConnScope {
|
||
|
return t.scope
|
||
|
}
|
||
|
|
||
|
func (t *transportConn) Close() error {
|
||
|
defer t.scope.Done()
|
||
|
return t.MuxedConn.Close()
|
||
|
}
|
||
|
|
||
|
func (t *transportConn) ConnState() network.ConnectionState {
|
||
|
return network.ConnectionState{
|
||
|
StreamMultiplexer: t.muxer,
|
||
|
Security: t.security,
|
||
|
Transport: "tcp",
|
||
|
UsedEarlyMuxerNegotiation: t.usedEarlyMuxerNegotiation,
|
||
|
}
|
||
|
}
|