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 ,
}
}
func (t *transportConn ) CloseWithError (errCode network .ConnErrorCode ) error {
defer t .scope .Done ()
return t .MuxedConn .CloseWithError (errCode )
}
The pages are generated with Golds v0.8.2 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .