You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
410 B

  1. syntax = "proto3";
  2. package tendermint.proto.p2p;
  3. option go_package = "github.com/tendermint/tendermint/proto/p2p";
  4. import "proto/p2p/types.proto";
  5. import "third_party/proto/gogoproto/gogo.proto";
  6. message PexRequest {}
  7. message PexAddrs {
  8. repeated NetAddress addrs = 1 [(gogoproto.nullable) = false];
  9. }
  10. message Message {
  11. oneof sum {
  12. PexRequest pex_request = 1;
  13. PexAddrs pex_addrs = 2;
  14. }
  15. }