tweak(sessionmanager/rdr3): correctly request a session transition

This is untested with other players - hopefully it doesn't lead to a rejection. Needs latest change in client code, too.
This commit is contained in:
blattersturm
2021-03-06 10:00:42 +01:00
parent 7680f316a7
commit f8ae027428
2 changed files with 63 additions and 21 deletions

View File

@@ -166,4 +166,17 @@ message scmds_Parameters {
MpSessionIdDto sid = 1;
int32 ncmds = 2;
repeated SessionCommand cmds = 3;
};
};
message UriType {
string url = 1;
};
message TransitionReady_PlayerQueue_Parameters {
UriType serverUri = 1;
uint32 serverSandbox = 2;
MpTransitionIdDto id = 3;
uint32 sessionType = 4;
MpSessionRequestIdDto requestId = 5;
MpSessionIdDto transferId = 6;
};