This commit is contained in:
aozhiwei 2020-09-29 19:35:34 +08:00
parent b806b068f4
commit 4c9b572079
3 changed files with 19 additions and 2 deletions

View File

@ -407,7 +407,7 @@ void Guild::_CMGuildChange(f8::MsgHdr& hdr, const cs::CMGuildChange& msg)
}
cs::SMGuildChange respmsg;
FillGuildBasic(respmsg.mutable_guild_basic());
FillGuildBasic(respmsg.mutable_info());
GuildMgr::Instance()->ForwardGuildSMMsg(hdr.socket_handle,
forward_msg->context(),
respmsg);

View File

@ -463,7 +463,7 @@ message SMGuildChange
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
optional MFGuildBasic guild_basic = 3; //
optional MFGuildBasic info = 3; //
}
//

View File

@ -353,3 +353,20 @@ message SS_IM_GuildMemberUpdateResponse
{
optional int64 seqid = 1;
}
message SS_IM_RefeshGuildMemberInfo
{
optional MFIMMsgConext context = 1;
}
message SS_GS_QueryGuildUserOnlineState
{
optional MFIMMsgConext context = 1;
repeated string account_ids = 3;
}
message SS_IM_PushGuildUserOnlineState
{
optional MFIMMsgConext context = 1;
repeated cs.MFUserInfo user_infos = 2;
}