Implementing CRDTs

This commit is contained in:
Tim Beatham
2023-10-06 10:12:46 +01:00
parent 923ca716ec
commit 81e2d16316
5 changed files with 40 additions and 117 deletions

View File

@ -20,19 +20,13 @@ message GetMeshRequest {
}
message GetMeshReply {
string meshId = 1;
repeated MeshNode meshNode = 2;
bytes mesh = 2;
}
message JoinMeshRequest {
string meshId = 1;
int32 hostPort = 2;
string publicKey = 3;
int32 wgPort = 4;
string wgIp = 5;
bytes changes = 1;
}
message JoinMeshReply {
bool success = 1;
optional string meshIp = 2;
}