1
This commit is contained in:
parent
cff0d78fc4
commit
71e7af4212
@ -379,12 +379,13 @@ void App::ProcessClientMsg(f8::MsgHdr& hdr)
|
||||
ss::SS_CMLogin msg;
|
||||
bool ok = msg.ParseFromArray(hdr.buf + hdr.offset, hdr.buflen - hdr.offset);
|
||||
if (ok) {
|
||||
MasterMgr::Instance()->RequestTargetServer(hdr,
|
||||
msg.team_uuid(),
|
||||
msg.account_id(),
|
||||
"",
|
||||
0,
|
||||
msg.proto_version());
|
||||
MasterMgr::Instance()->RequestTargetServer
|
||||
(hdr,
|
||||
msg.team_uuid(),
|
||||
msg.account_id(),
|
||||
"",
|
||||
0,
|
||||
msg.proto_version());
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -393,18 +394,22 @@ void App::ProcessClientMsg(f8::MsgHdr& hdr)
|
||||
ss::SS_CMReconnect msg;
|
||||
bool ok = msg.ParseFromArray(hdr.buf + hdr.offset, hdr.buflen - hdr.offset);
|
||||
if (ok) {
|
||||
MasterMgr::Instance()->RequestTargetServer(hdr,
|
||||
msg.team_uuid(),
|
||||
msg.account_id(),
|
||||
msg.server_info(),
|
||||
1,
|
||||
0);
|
||||
MasterMgr::Instance()->RequestTargetServer
|
||||
(hdr,
|
||||
msg.team_uuid(),
|
||||
msg.account_id(),
|
||||
msg.server_info(),
|
||||
1,
|
||||
0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case ss::_SS_CMKcpHandshake:
|
||||
{
|
||||
|
||||
ss::SS_CMKcpHandshake msg;
|
||||
bool ok = msg.ParseFromArray(hdr.buf + hdr.offset, hdr.buflen - hdr.offset);
|
||||
if (ok) {
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user