2015-07-07 03:54:22 +03:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 19:48:40 +03:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 03:54:22 +03:00
|
|
|
//
|
2015-07-23 19:35:11 +03:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 03:54:22 +03:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 19:48:40 +03:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 03:54:22 +03:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 19:48:40 +03:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 03:54:22 +03:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 19:48:40 +03:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 03:54:22 +03:00
|
|
|
|
2015-04-18 02:11:09 +03:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
2023-12-07 11:07:48 +03:00
|
|
|
"net"
|
|
|
|
|
2023-04-10 13:36:45 +03:00
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/bsc"
|
2022-07-05 06:14:21 +03:00
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/trust"
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/snap"
|
2015-04-18 02:11:09 +03:00
|
|
|
)
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
// ethPeerInfo represents a short summary of the `eth` sub-protocol metadata known
|
2015-10-27 16:10:30 +03:00
|
|
|
// about a connected peer.
|
2020-12-14 12:27:15 +03:00
|
|
|
type ethPeerInfo struct {
|
2023-03-06 10:27:46 +03:00
|
|
|
Version uint `json:"version"` // Ethereum protocol version negotiated
|
2015-04-18 02:11:09 +03:00
|
|
|
}
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
// ethPeer is a wrapper around eth.Peer to maintain a few extra metadata.
|
|
|
|
type ethPeer struct {
|
|
|
|
*eth.Peer
|
2022-07-05 06:14:21 +03:00
|
|
|
snapExt *snapPeer // Satellite `snap` connection
|
|
|
|
trustExt *trustPeer
|
2023-04-10 13:36:45 +03:00
|
|
|
bscExt *bscPeer // Satellite `bsc` connection
|
2020-01-22 17:39:43 +03:00
|
|
|
}
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
// info gathers and returns some `eth` protocol metadata known about a peer.
|
|
|
|
func (p *ethPeer) info() *ethPeerInfo {
|
|
|
|
return ðPeerInfo{
|
2023-03-06 10:27:46 +03:00
|
|
|
Version: p.Version(),
|
2015-10-27 16:10:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-07 11:07:48 +03:00
|
|
|
func (p *ethPeer) remoteAddr() net.Addr {
|
|
|
|
if p.Peer != nil && p.Peer.Peer != nil {
|
|
|
|
return p.Peer.Peer.RemoteAddr()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
// snapPeerInfo represents a short summary of the `snap` sub-protocol metadata known
|
|
|
|
// about a connected peer.
|
|
|
|
type snapPeerInfo struct {
|
|
|
|
Version uint `json:"version"` // Snapshot protocol version negotiated
|
2015-05-18 21:33:37 +03:00
|
|
|
}
|
|
|
|
|
2022-07-05 06:14:21 +03:00
|
|
|
// trustPeerInfo represents a short summary of the `trust` sub-protocol metadata known
|
|
|
|
// about a connected peer.
|
|
|
|
type trustPeerInfo struct {
|
|
|
|
Version uint `json:"version"` // Trust protocol version negotiated
|
|
|
|
}
|
|
|
|
|
2023-04-10 13:36:45 +03:00
|
|
|
// bscPeerInfo represents a short summary of the `bsc` sub-protocol metadata known
|
|
|
|
// about a connected peer.
|
|
|
|
type bscPeerInfo struct {
|
|
|
|
Version uint `json:"version"` // bsc protocol version negotiated
|
|
|
|
}
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
// snapPeer is a wrapper around snap.Peer to maintain a few extra metadata.
|
|
|
|
type snapPeer struct {
|
|
|
|
*snap.Peer
|
2015-05-18 21:33:37 +03:00
|
|
|
}
|
2016-03-29 04:08:16 +03:00
|
|
|
|
2022-07-05 06:14:21 +03:00
|
|
|
// trustPeer is a wrapper around trust.Peer to maintain a few extra metadata.
|
|
|
|
type trustPeer struct {
|
|
|
|
*trust.Peer
|
|
|
|
}
|
|
|
|
|
2023-04-10 13:36:45 +03:00
|
|
|
// bscPeer is a wrapper around bsc.Peer to maintain a few extra metadata.
|
|
|
|
type bscPeer struct {
|
|
|
|
*bsc.Peer
|
|
|
|
}
|
|
|
|
|
2020-12-14 12:27:15 +03:00
|
|
|
// info gathers and returns some `snap` protocol metadata known about a peer.
|
|
|
|
func (p *snapPeer) info() *snapPeerInfo {
|
|
|
|
return &snapPeerInfo{
|
|
|
|
Version: p.Version(),
|
2016-03-29 04:08:16 +03:00
|
|
|
}
|
|
|
|
}
|
2022-07-05 06:14:21 +03:00
|
|
|
|
|
|
|
// info gathers and returns some `trust` protocol metadata known about a peer.
|
|
|
|
func (p *trustPeer) info() *trustPeerInfo {
|
|
|
|
return &trustPeerInfo{
|
|
|
|
Version: p.Version(),
|
|
|
|
}
|
|
|
|
}
|
2023-04-10 13:36:45 +03:00
|
|
|
|
|
|
|
// info gathers and returns some `bsc` protocol metadata known about a peer.
|
|
|
|
func (p *bscPeer) info() *bscPeerInfo {
|
|
|
|
return &bscPeerInfo{
|
|
|
|
Version: p.Version(),
|
|
|
|
}
|
|
|
|
}
|