2018-04-04 07:59:28 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2019-08-10 08:46:07 +00:00
|
|
|
"github.com/anacrolix/dht/v2/krpc"
|
2019-08-21 10:58:40 +00:00
|
|
|
|
2018-07-10 01:21:24 +00:00
|
|
|
"github.com/anacrolix/torrent/peer_protocol"
|
2018-04-04 07:59:28 +00:00
|
|
|
)
|
|
|
|
|
2019-12-18 02:52:00 +00:00
|
|
|
// Peer connection info, handed about publicly.
|
2020-05-29 09:44:48 +00:00
|
|
|
type PeerInfo struct {
|
2018-04-04 07:59:28 +00:00
|
|
|
Id [20]byte
|
2021-01-25 03:22:24 +00:00
|
|
|
Addr PeerRemoteAddr
|
2020-02-21 00:07:50 +00:00
|
|
|
Source PeerSource
|
2018-04-04 07:59:28 +00:00
|
|
|
// Peer is known to support encryption.
|
|
|
|
SupportsEncryption bool
|
2018-07-10 01:21:24 +00:00
|
|
|
peer_protocol.PexPeerFlags
|
2019-12-18 02:52:00 +00:00
|
|
|
// Whether we can ignore poor or bad behaviour from the peer.
|
|
|
|
Trusted bool
|
2018-04-04 07:59:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 07:41:59 +00:00
|
|
|
func (me PeerInfo) equal(other PeerInfo) bool {
|
2020-04-16 02:17:18 +00:00
|
|
|
return me.Id == other.Id &&
|
|
|
|
me.Addr.String() == other.Addr.String() &&
|
|
|
|
me.Source == other.Source &&
|
|
|
|
me.SupportsEncryption == other.SupportsEncryption &&
|
|
|
|
me.PexPeerFlags == other.PexPeerFlags &&
|
|
|
|
me.Trusted == other.Trusted
|
|
|
|
}
|
|
|
|
|
2020-05-29 09:44:48 +00:00
|
|
|
// Generate PeerInfo from peer exchange
|
|
|
|
func (me *PeerInfo) FromPex(na krpc.NodeAddr, fs peer_protocol.PexPeerFlags) {
|
2020-02-20 05:47:37 +00:00
|
|
|
me.Addr = ipPortAddr{append([]byte(nil), na.IP...), na.Port}
|
2020-02-21 00:07:50 +00:00
|
|
|
me.Source = PeerSourcePex
|
2018-04-04 07:59:28 +00:00
|
|
|
// If they prefer encryption, they must support it.
|
2018-07-10 01:21:24 +00:00
|
|
|
if fs.Get(peer_protocol.PexPrefersEncryption) {
|
2018-04-04 07:59:28 +00:00
|
|
|
me.SupportsEncryption = true
|
|
|
|
}
|
2018-07-10 01:21:24 +00:00
|
|
|
me.PexPeerFlags = fs
|
2018-04-04 07:59:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 09:44:48 +00:00
|
|
|
func (me PeerInfo) addr() IpPort {
|
2021-01-25 03:22:24 +00:00
|
|
|
ipPort, _ := tryIpPortFromNetAddr(me.Addr)
|
|
|
|
return IpPort{ipPort.IP, uint16(ipPort.Port)}
|
2018-04-04 07:59:28 +00:00
|
|
|
}
|