2021-06-16 16:19:45 -04:00
|
|
|
package libp2ptls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
|
2022-11-04 09:57:20 -04:00
|
|
|
ci "github.com/libp2p/go-libp2p/core/crypto"
|
2023-02-22 17:58:17 -04:00
|
|
|
"github.com/libp2p/go-libp2p/core/network"
|
2022-11-04 09:57:20 -04:00
|
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
|
|
"github.com/libp2p/go-libp2p/core/sec"
|
2021-06-16 16:19:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type conn struct {
|
|
|
|
*tls.Conn
|
|
|
|
|
2023-05-19 16:23:55 -04:00
|
|
|
localPeer peer.ID
|
2023-02-22 17:58:17 -04:00
|
|
|
remotePeer peer.ID
|
|
|
|
remotePubKey ci.PubKey
|
|
|
|
connectionState network.ConnectionState
|
2021-06-16 16:19:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ sec.SecureConn = &conn{}
|
|
|
|
|
|
|
|
func (c *conn) LocalPeer() peer.ID {
|
|
|
|
return c.localPeer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *conn) RemotePeer() peer.ID {
|
|
|
|
return c.remotePeer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *conn) RemotePublicKey() ci.PubKey {
|
|
|
|
return c.remotePubKey
|
|
|
|
}
|
2023-02-22 17:58:17 -04:00
|
|
|
|
|
|
|
func (c *conn) ConnState() network.ConnectionState {
|
|
|
|
return c.connectionState
|
|
|
|
}
|