1
This commit is contained in:
parent
80cd4c08fb
commit
55268bb0fd
@ -380,6 +380,7 @@ void App::ProcessClientMsg(f8::MsgHdr& hdr)
|
||||
(hdr,
|
||||
msg.team_uuid(),
|
||||
msg.account_id(),
|
||||
msg.session_id(),
|
||||
"",
|
||||
0,
|
||||
msg.proto_version());
|
||||
@ -395,6 +396,7 @@ void App::ProcessClientMsg(f8::MsgHdr& hdr)
|
||||
(hdr,
|
||||
msg.team_uuid(),
|
||||
msg.account_id(),
|
||||
msg.session_id(),
|
||||
msg.server_info(),
|
||||
1,
|
||||
0);
|
||||
|
@ -93,6 +93,7 @@ std::shared_ptr<Master> MasterMgr::GetConnById(int instance_id)
|
||||
void MasterMgr::RequestTargetServer(f8::MsgHdr& hdr,
|
||||
const std::string& team_id,
|
||||
const std::string& account_id,
|
||||
const std::string& session_id,
|
||||
const std::string& server_info,
|
||||
int is_reconnect,
|
||||
int proto_version)
|
||||
@ -128,6 +129,7 @@ void MasterMgr::RequestTargetServer(f8::MsgHdr& hdr,
|
||||
ss::SS_WSP_RequestTargetServer msg;
|
||||
msg.set_context_id(curr_context_id_);
|
||||
msg.set_account_id(account_id);
|
||||
msg.set_session_id(session_id);
|
||||
msg.set_team_id(team_uuid);
|
||||
msg.set_server_info(server_info);
|
||||
msg.set_is_reconnect(is_reconnect);
|
||||
|
@ -30,6 +30,7 @@ class MasterMgr : public a8::Singleton<MasterMgr>
|
||||
void RequestTargetServer(f8::MsgHdr& hdr,
|
||||
const std::string& team_id,
|
||||
const std::string& account_id,
|
||||
const std::string& session_id,
|
||||
const std::string& server_info,
|
||||
int is_reconnect,
|
||||
int proto_version);
|
||||
|
Loading…
x
Reference in New Issue
Block a user