mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-11 04:43:56 -07:00
[App] Send diagnostics on server connection
Took 32 seconds Took 22 seconds
This commit is contained in:
parent
bbd8671e6e
commit
b9198d99e9
13 changed files with 258 additions and 9 deletions
|
|
@ -55,6 +55,22 @@ message Command_Login {
|
|||
optional string hashed_password = 6;
|
||||
}
|
||||
|
||||
message FeatureFlag {
|
||||
optional string name = 1;
|
||||
optional string value = 2;
|
||||
}
|
||||
|
||||
message Command_ClientDiagnostics {
|
||||
extend SessionCommand {
|
||||
optional Command_ClientDiagnostics ext = 1051;
|
||||
}
|
||||
|
||||
optional string clientver = 1;
|
||||
repeated FeatureFlag feature_flags = 2;
|
||||
optional string os = 3;
|
||||
optional string arch = 4;
|
||||
}
|
||||
|
||||
message Command_Message {
|
||||
extend SessionCommand {
|
||||
optional Command_Message ext = 1002;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue