diff --git a/server/tools/protobuild/cs_msgid.proto b/server/tools/protobuild/cs_msgid.proto index 5b7cf84..77bfd4e 100644 --- a/server/tools/protobuild/cs_msgid.proto +++ b/server/tools/protobuild/cs_msgid.proto @@ -12,6 +12,16 @@ enum CMMessageId_e _CMFriendAgree = 106; _CMFriendIgnore = 107; _CMFriendDelete = 108; + _CMFriendApply = 109; + _CMFriendApplyList = 110; + _CMFriendBlackList = 111; + _CMFriendAddBlack = 112; + _CMFriendDeleteBlack = 113; + + _CMSendChatMsg = 151; + _CMSendCustomMsg = 152; + _CMUpdateTempCustomData = 153; + _CMUpdateUserInfo = 154; _CMGroupCreate = 201; _CMGroupJoin = 202; @@ -34,6 +44,11 @@ enum SMMessageId_e _SMFriendAgree = 106; _SMFriendIgnore = 107; _SMFriendDelete = 108; + _SMFriendApply = 109; + _SMFriendApplyList = 110; + _SMFriendBlackList = 111; + _SMFriendAddBlack = 112; + _SMFriendDeleteBlack = 113; _SMGroupCreate = 201; _SMGroupJoin = 202; @@ -43,6 +58,8 @@ enum SMMessageId_e _SMGroupDismiss = 206; _SMGroupRename = 207; - _SMUserStatusNotify = 1001; - _SMUserInfoUpdate = 1002; + _SMUserStatusNotify = 501; + _SMUserInfoUpdate = 502; + _SMCustomMsgNotify = 503; + _SMUserTempCustomDataUpdate = 504; } diff --git a/server/tools/robot/virtualclient/new_robot.py b/server/tools/robot/virtualclient/new_robot.py index 0ac0a39..474b0c6 100644 --- a/server/tools/robot/virtualclient/new_robot.py +++ b/server/tools/robot/virtualclient/new_robot.py @@ -21,10 +21,10 @@ def main(): help = "account info") (options, args) = parser.parse_args() - ws_url = args if args else 'ws://192.168.100.21:7101/websocket' + ws_url = args if args else 'wss://relation-test.kingsome.cn/friend/websocket' accounts = options.accounts.split(',') accounts = [] - for i in range(500): + for i in range(1): accounts.append('test' + str(i)) for account in accounts: ioloop.IOLoop.current().spawn_callback(createVirtualClient, account, ws_url) diff --git a/server/tools/robot/virtualclient/virtualclient.py b/server/tools/robot/virtualclient/virtualclient.py index 56ff774..7208340 100644 --- a/server/tools/robot/virtualclient/virtualclient.py +++ b/server/tools/robot/virtualclient/virtualclient.py @@ -64,10 +64,8 @@ class VirtualClient(object): print('') def sendLogin(self, conn): - msg = cs_proto_pb2.CMJoin() - msg.server_id = 2 + msg = cs_proto_pb2.CMLogin() msg.account_id = self.account - msg.baseskin = 14001 self.sendMsg(conn, msg) def parsePacket(self, conn, recv_buf):