prysm-pulse/beacon-chain/p2p/rpc_topic_mappings.go
Preston Van Loon b59b3ec09c
P2P implement message send (#3278)
* return a stream with send, for reading response

* gofmt

* added sender impl

* fix imports
2019-08-22 19:02:46 -04:00

29 lines
1000 B
Go

package p2p
import (
"reflect"
"github.com/gogo/protobuf/proto"
p2ppb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
)
// RPCTopicMappings represent the protocol ID to protobuf message type map for easy
// lookup. These mappings should be used for outbound sending only. Peers may respond
// with a different message type as defined by the p2p protocol.
var RPCTopicMappings = map[string]proto.Message{
"/eth2/beacon_chain/req/hello/1": &p2ppb.Hello{},
"/eth2/beacon_chain/req/goodbye/1": &p2ppb.Goodbye{},
"/eth2/beacon_chain/req/beacon_blocks/1": &p2ppb.BeaconBlocksRequest{},
"/eth2/beacon_chain/req/recent_beacon_blocks/1": &p2ppb.RecentBeaconBlocksRequest{},
}
// RPCTypeMapping is the inverse of RPCTopicMappings so that an arbitrary protobuf message
// can be mapped to a protocol ID string.
var RPCTypeMapping = make(map[reflect.Type]string)
func init() {
for k, v := range RPCTopicMappings {
RPCTypeMapping[reflect.TypeOf(v)] = k
}
}