2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00: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 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00: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 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-04-17 23:11:09 +00:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
2020-12-14 09:27:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/snap"
|
2015-04-17 23:11:09 +00:00
|
|
|
)
|
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// ethPeerInfo represents a short summary of the `eth` sub-protocol metadata known
|
2015-10-27 13:10:30 +00:00
|
|
|
// about a connected peer.
|
2020-12-14 09:27:15 +00:00
|
|
|
type ethPeerInfo struct {
|
2023-03-06 07:27:46 +00:00
|
|
|
Version uint `json:"version"` // Ethereum protocol version negotiated
|
2015-04-17 23:11:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// ethPeer is a wrapper around eth.Peer to maintain a few extra metadata.
|
|
|
|
type ethPeer struct {
|
|
|
|
*eth.Peer
|
2022-06-13 14:24:45 +00:00
|
|
|
snapExt *snapPeer // Satellite `snap` connection
|
2020-01-22 14:39:43 +00:00
|
|
|
}
|
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// info gathers and returns some `eth` protocol metadata known about a peer.
|
|
|
|
func (p *ethPeer) info() *ethPeerInfo {
|
|
|
|
return ðPeerInfo{
|
2023-03-06 07:27:46 +00:00
|
|
|
Version: p.Version(),
|
2015-10-27 13:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 09:27:15 +00: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 18:33:37 +00:00
|
|
|
}
|
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// snapPeer is a wrapper around snap.Peer to maintain a few extra metadata.
|
|
|
|
type snapPeer struct {
|
|
|
|
*snap.Peer
|
2015-05-18 18:33:37 +00:00
|
|
|
}
|
2016-03-29 01:08:16 +00:00
|
|
|
|
2020-12-14 09:27:15 +00: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 01:08:16 +00:00
|
|
|
}
|
|
|
|
}
|