Add protocol entry for server status

Ref #2474
This commit is contained in:
Gavin Bisesi 2018-07-22 12:53:24 -04:00
parent 986e405ca7
commit 1fc0774270
4 changed files with 39 additions and 0 deletions

View file

@ -31,6 +31,7 @@ message SessionCommand {
REPLAY_DOWNLOAD = 1101;
REPLAY_MODIFY_MATCH = 1102;
REPLAY_DELETE_MATCH = 1103;
SERVER_STATUS = 1200;
}
extensions 100 to max;
}
@ -191,3 +192,9 @@ message Command_ForgotPasswordChallenge {
optional string clientid = 2;
optional string email = 3;
}
message Command_Server_Status {
extend SessionCommand {
optional Command_Server_Status ext = 1200;
}
}