This commit is contained in:
aozhiwei 2020-09-18 14:11:56 +08:00
parent 936365750d
commit 833176f5b9
2 changed files with 0 additions and 49 deletions

View File

@ -1,14 +0,0 @@
package ss;
//id定义
enum SSMessageId_e
{
_SS_Ping = 8;
_SS_Pong = 9;
_SS_WSP_SocketDisconnect = 10;
_SS_WSP_RequestTargetServer = 11;
_SS_MS_ResponseTargetServer = 12;
_SS_ForceCloseSocket = 13;
}

View File

@ -1,35 +0,0 @@
package ss;
message SS_Ping
{
}
message SS_Pong
{
}
message SS_WSP_SocketDisconnect
{
}
message SS_WSP_RequestTargetServer
{
optional int64 context_id = 1;
optional string account_id = 2;
optional string team_id = 3;
}
message SS_MS_ResponseTargetServer
{
optional int32 error_code = 1;
optional string error_msg = 2;
optional int64 context_id = 3;
optional string host = 4;
optional int32 port = 5;
}
message SS_ForceCloseSocket
{
}