conversation_request cleanup
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
ycc
2024-01-14 15:49:24 +01:00
parent 48b2e78b41
commit 44661de993
4 changed files with 204 additions and 213 deletions

View File

@ -35,10 +35,10 @@ message Invitation {
// structure for requesting incoming messages
message ConversationRequest {
string lookupKey = 1; // lookup key for a conversation
string lastServerUuidOK = 2; // Last Server message UUID received (send me all after that one)
int64 sendTimestamp = 3;
string lookupSignature = 4; // prove that I own the private key by signing that block
string lookup_key = 1; // lookup key for a conversation
// removed string lastServerUuidOK = 2; // Last Server message UUID received (send me all after that one)
int64 send_timestamp = 2;
string lookup_signature = 3; // prove that I own the private key by signing that block
}
message Meet {