|
@@ -124,9 +124,9 @@ message M2C_Reload // IResponse
|
|
|
message C2R_Login // IRequest
|
|
|
{
|
|
|
int32 RpcId = 1;
|
|
|
- string Account = 2; // 帐号
|
|
|
- string Password = 3; // 密码
|
|
|
- int32 Channel = 4; // 渠道号
|
|
|
+ string Account = 2; // 帐号
|
|
|
+ string Password = 3; // 密码
|
|
|
+ int32 Channel = 4; // 渠道号(10000:测试渠道全渠道 10001:黄冈 10002:鄂州)
|
|
|
}
|
|
|
|
|
|
message R2C_Login // IResponse
|
|
@@ -135,7 +135,7 @@ message R2C_Login // IResponse
|
|
|
int32 Error = 2;
|
|
|
string Message = 3;
|
|
|
string Address = 4;
|
|
|
- int64 Key = 5;
|
|
|
+ string Key = 5;
|
|
|
int64 GameId = 6;
|
|
|
}
|
|
|
|
|
@@ -143,7 +143,7 @@ message R2C_Login // IResponse
|
|
|
message C2G_LoginGame // IRequest
|
|
|
{
|
|
|
int32 RpcId = 1;
|
|
|
- int64 Key = 2; // 帐号
|
|
|
+ string Key = 2; // 游戏服登录key
|
|
|
int64 GameId = 3;
|
|
|
}
|
|
|
|
|
@@ -167,6 +167,7 @@ message G2C_GetGameplayList // IResponse
|
|
|
int32 RpcId = 1;
|
|
|
int32 Error = 2;
|
|
|
string Message = 3;
|
|
|
+ repeated int32 GameplayList = 4; // 房间玩法类型 1:黄冈晃晃 2:鄂州麻将
|
|
|
}
|
|
|
|
|
|
// 创建房间
|
|
@@ -174,7 +175,7 @@ message G2C_GetGameplayList // IResponse
|
|
|
message C2G_CreatRoom // IRequest
|
|
|
{
|
|
|
int32 RpcId = 1;
|
|
|
- int32 Type = 2; // 房间玩法类型 1:黄冈晃晃
|
|
|
+ int32 Type = 2; // 房间玩法类型 1:黄冈晃晃 2:鄂州麻将
|
|
|
}
|
|
|
|
|
|
message G2C_CreatRoom // IResponse
|