mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
12 lines
419 B
Protocol Buffer
12 lines
419 B
Protocol Buffer
syntax = "proto3";
|
|
package Sining.Message;
|
|
/// Gate跟Map服务器进行通讯、注册Address协议
|
|
message I_G2M_LoginAddressRequest // IRouteRequest,I_M2G_LoginAddressResponse
|
|
{
|
|
long AddressId = 1; // 用来关联Address的Id,一般是账号Id或UnitId这些不会变动的
|
|
long GateRouteId = 2; // Gate的RouteIdId用于Map发送给客户端时需要
|
|
}
|
|
message I_M2G_LoginAddressResponse // IRouteResponse
|
|
{
|
|
|
|
} |