Skip to content

Commit fb459e7

Browse files
committed
added:http verification start log
1 parent a3c7eee commit fb459e7

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

XEngine_Release/XEngine_Config/XEngine_Config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"nHttpPort": 5501,
66
"nRFCPort": 5502,
77
"nNTPPort": 0,
8-
"nDNSPort": 53,
8+
"nDNSPort": 0,
99
"XMax": {
1010
"nMaxClient": 10000,
1111
"nMaxQueue": 10000,

XEngine_Source/XEngine_ServiceApp/XEngine_HttpApp/XEngine_HttpApp.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,15 @@ int main(int argc, char** argv)
553553
{
554554
XLOG_PRINT(xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_WARN, _X("启动服务中,数据查询服务没有启用"));
555555
}
556+
557+
if (st_ServiceConfig.st_XVerifcation.bEnable)
558+
{
559+
XLOG_PRINT(xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X("启动服务中,启用HTTP验证,验证模式为:%d"), st_ServiceConfig.st_XVerifcation.nVType);
560+
}
561+
else
562+
{
563+
XLOG_PRINT(xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_WARN, _X("启动服务中,数据查询服务没有启用"));
564+
}
556565
#ifndef _DEBUG
557566
//发送信息报告
558567
if (st_ServiceConfig.st_XReport.bEnable && !bIsTest)

0 commit comments

Comments
 (0)