This commit is contained in:
aozhiwei 2023-04-23 17:17:30 +08:00
parent a26e6547cf
commit cff0d78fc4
2 changed files with 13 additions and 1 deletions

View File

@ -10,7 +10,8 @@ enum SSMessageId_e
_SS_MS_ResponseTargetServer = 12; _SS_MS_ResponseTargetServer = 12;
_SS_ForceCloseSocket = 13; _SS_ForceCloseSocket = 13;
_SS_CMKcpHandshake = 99; _SS_CMKcpHandshake = 98;
_SS_SMKcpHandshake = 99;
_SS_CMPing = 101; _SS_CMPing = 101;
_SS_SMRpcError = 102; _SS_SMRpcError = 102;
_SS_CMLogin = 103; _SS_CMLogin = 103;

View File

@ -15,7 +15,18 @@ message SS_CMLogin_CMReConnect_CommonHead
message SS_CMKcpHandshake message SS_CMKcpHandshake
{ {
optional int32 proto_version = 1; //Constant_e.ProtoVersion
optional string account_id = 2; //id
optional string session_id = 3; //session id
optional string team_uuid = 4; //
}
message SS_SMKcpHandshake
{
optional int32 conv = 1; //conv
optional bytes secret_key = 2; //secret eky
optional string remote_host = 3; //host
optional int32 remote_port = 4; //port
} }
message SS_CMLogin message SS_CMLogin