mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-04 15:17:02 +00:00
pex: update pex messages (#352)
This commit is contained in:
@@ -14,9 +14,6 @@ Pex has one channel. The channel identifier is listed below.
|
||||
|
||||
## Message Types
|
||||
|
||||
The current PEX service has two versions. The first uses IP/port pair but since the p2p stack is moving towards a transport agnostic approach,
|
||||
node endpoints require a `Protocol` and `Path` hence the V2 version uses a [url](https://golang.org/pkg/net/url/#URL) instead.
|
||||
|
||||
### PexRequest
|
||||
|
||||
PexRequest is an empty message requesting a list of peers.
|
||||
@@ -33,32 +30,8 @@ PexResponse is an list of net addresses provided to a peer to dial.
|
||||
|
||||
### PexAddress
|
||||
|
||||
PexAddress provides needed information for a node to dial a peer.
|
||||
|
||||
| Name | Type | Description | Field Number |
|
||||
|------|--------|------------------|--------------|
|
||||
| id | string | NodeID of a peer | 1 |
|
||||
| ip | string | The IP of a node | 2 |
|
||||
| port | port | Port of a peer | 3 |
|
||||
|
||||
|
||||
### PexRequestV2
|
||||
|
||||
PexRequest is an empty message requesting a list of peers.
|
||||
|
||||
> EmptyRequest
|
||||
|
||||
### PexResponseV2
|
||||
|
||||
PexResponse is an list of net addresses provided to a peer to dial.
|
||||
|
||||
| Name | Type | Description | Field Number |
|
||||
|-------|------------------------------------|------------------------------------------|--------------|
|
||||
| addresses | repeated [PexAddressV2](#PexAddressV2) | List of peer addresses available to dial | 1 |
|
||||
|
||||
### PexAddressV2
|
||||
|
||||
PexAddress provides needed information for a node to dial a peer.
|
||||
PexAddress provides needed information for a node to dial a peer. This is in the form of a `URL` that gets parsed
|
||||
into a `NodeAddress`. See [ParseNodeAddress](https://github.com/tendermint/tendermint/blob/f2a8f5e054cf99ebe246818bb6d71f41f9a30faa/internal/p2p/address.go#L43) for more details.
|
||||
|
||||
| Name | Type | Description | Field Number |
|
||||
|------|--------|------------------|--------------|
|
||||
@@ -70,7 +43,5 @@ Message is a [`oneof` protobuf type](https://developers.google.com/protocol-buff
|
||||
|
||||
| Name | Type | Description | Field Number |
|
||||
|--------------|---------------------------|------------------------------------------------------|--------------|
|
||||
| pex_request | [PexRequest](#PexRequest) | Empty request asking for a list of addresses to dial | 1 |
|
||||
| pex_response | [PexResponse](#PexResponse) | List of addresses to dial | 2 |
|
||||
| pex_request_v2 | [PexRequestV2](#PexRequestV2) | Empty request asking for a list of addresses to dial | 3 |
|
||||
| pex_response_v2 | [PexRespinseV2](#PexResponseV2) | List of addresses to dial | 4 |
|
||||
| pex_request | [PexRequest](#PexRequest) | Empty request asking for a list of addresses to dial | 3 |
|
||||
| pex_response | [PexResponse](#PexResponse) | List of addresses to dial | 4 |
|
||||
|
||||
Reference in New Issue
Block a user