Skip to content

Commit 08c892f

Browse files
committed
update:docment and configure
1 parent b52e3f2 commit 08c892f

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

CHANGELOG

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
XEngine_MQService V3.10.0.1001
2+
3+
增加:消息属性增加无限制消息获取
4+
增加:http的获取主题消息支持队列统计了
5+
更新:匹配XEngine V8.25版本API
6+
修改:退出协议不在需要验证用户和密码,因为只对自己做登出
7+
修改:用户删除需要身份ID了
8+
修改:消息队列支持默认主题名设置了
9+
修改:获取指定消息时会处理消息识别的一些问题
10+
修改:未读消息协议修改为统计剩余消息了
11+
修改:获取在线列表会验证url参数了
12+
修正:用户登出的http hook没有用户信息的问题
13+
修正:获取消息对于指定消息没有正确处理的问题
14+
删除:数据库模块的DBModule_MQData_List函数
15+
16+
added:message attr add proactive message get.
17+
added:get topic of http restful support get message count
18+
update:match xengine v8.25
19+
modify:does not ver user pass and user name when user logout.just ver self
20+
modify:delete user need id number
21+
modify:support default topic name set for mq protocol
22+
modify:some issues with message identification will be handled when obtaining the specified message
23+
modify:unread message protocol is modify to left count
24+
modify:get online user list ver url parament now
25+
fixed:user logout httppass is not user info
26+
fixed:getting messages will process messages that are not sent to self
27+
delete:DBModule_MQData_List function for dbmoudle
28+
======================================================================================
129
XEngine_MQService V3.9.0.1001
230

331
增加:消息属性的通知所有和通知自身的支持

XEngine_Docment/Docment_en.docx

-871 Bytes
Binary file not shown.

XEngine_Docment/Docment_zh.docx

-956 Bytes
Binary file not shown.

XEngine_Release/XEngine_Config/XEngine_Config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
"tszPassLogout":""
3636
},
3737
"XVer":[
38-
"3.9.0.1001 Build20241227",
38+
"3.10.0.1001 Build20240305",
39+
"3.9.0.1001 Build20231227",
3940
"3.8.0.1001 Build20230816",
4041
"3.7.0.1001 Build20230426",
4142
"3.6.0.1001 Build20230222",

XEngine_Source/XEngine_MQServiceApp/MQService_TCPTask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ bool MessageQueue_TCP_Handle(XENGINE_PROTOCOLHDR* pSt_ProtocolHdr, LPCXSTR lpszC
298298
XLOG_PRINT(xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_ERROR, _X("%s客户端:%s,请求失败,用户没有通过验证"), lpszClientType, lpszClientAddr);
299299
return false;
300300
}
301-
if (nMsgLen >= sizeof(XENGINE_PROTOCOL_XMQ))
301+
if (nMsgLen >= (int)sizeof(XENGINE_PROTOCOL_XMQ))
302302
{
303303
memcpy(&st_MQProtocol, lpszMsgBuffer, sizeof(XENGINE_PROTOCOL_XMQ));
304304
//如果没有填充消息,那就使用默认

0 commit comments

Comments
 (0)