feat(proto): request / response pair tracking by assigning id

This commit is contained in:
hdbg
2026-03-18 23:43:44 +01:00
committed by Stas
parent 60ce1cc110
commit 3e8b26418a
8 changed files with 259 additions and 118 deletions

View File

@@ -89,6 +89,7 @@ message ClientConnectionResponse {
message ClientConnectionCancel {}
message UserAgentRequest {
int32 id = 14;
oneof payload {
AuthChallengeRequest auth_challenge_request = 1;
AuthChallengeSolution auth_challenge_solution = 2;
@@ -105,6 +106,7 @@ message UserAgentRequest {
}
}
message UserAgentResponse {
optional int32 id = 14;
oneof payload {
AuthChallenge auth_challenge = 1;
AuthResult auth_result = 2;