Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Merge commit 'bbeed13b2b052ae0fc669fb4a4ce1d5ac2cc9092' into p2p
Browse files Browse the repository at this point in the history
  • Loading branch information
sasaxie committed Mar 20, 2018
2 parents 8140964 + bbeed13 commit 8d0790f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/Discover.proto
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ message PingMessage {
int32 version = 1;
Endpoint from = 2;
Endpoint to = 3;
int32 timestamp = 4;
int64 timestamp = 4;
}

message PongMessage {
Endpoint to = 1;
int32 echo = 2;
int32 timestamp = 3;
int64 timestamp = 3;
}

message FindNeighbours {
bytes target = 1;
int32 timestamp = 2;
int64 timestamp = 2;
}

message Neighbour {
Expand All @@ -75,5 +75,5 @@ message Neighbour {

message Neighbours {
repeated Neighbour neighbours = 1;
int32 timestamp = 2;
int64 timestamp = 2;
}

0 comments on commit 8d0790f

Please sign in to comment.