刷新好友状态

master_huanxiang
gaojie 2019-06-13 11:40:53 +08:00
parent 75dc58d651
commit 08f82be45e
2 changed files with 17 additions and 1 deletions

View File

@ -241,6 +241,9 @@ enum MessageType{
RINGFIRE_ADVANCED_REQUEST = 11708; //
RINGFIRE_ADVANCED_RESPONSE = 11709;
REFRESH_FRIEND_STATE_REQEUST= 11710; //线
REFRESH_FRIEND_STATE_RESPONSE = 11711;
// S 11800
SUCCESS_RESPONSE = 11800; //
@ -271,6 +274,8 @@ enum MessageType{
SEND_CHAT_INFO_INDICATION = 11818; //
SEND_FRIEND_STATE_INDICATION = 11819; //
// T 11900
TRIGGER_EVENT_REQUEST = 11900; //
TRIGGER_EVENT_RESPONSE = 11901;

View File

@ -273,7 +273,7 @@ import "CommonProto.proto";
}
message sendFriendInfoIndication{
optional int32 type = 1; //1: 2: 3: 4:
optional int32 type = 1; //1: 2:
optional Friend Friends =2; //
}
@ -297,11 +297,22 @@ import "CommonProto.proto";
message FriendSearchRequest{
optional string name = 1; //
}
message FriendSearchResponse{
optional int32 type = 1; // 1:, 2:. 3:
optional Friend Friends =2; //
}
message SendFriendStateIndication{
optional int32 type = 1; //1: 2:
optional int32 friendId =2; //Id
}
message RefreshFriendStateResponse{
repeated int32 friendIds = 1;
}