Skip to content

Commit 0811f5d

Browse files
committed
update:match xengine v8.15
1 parent 690fcf8 commit 0811f5d

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

XEngine_Source/StorageModule_APIHelp/pch.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ using namespace std;
2929
#include <XEngine_Include/XEngine_ProtocolHdr.h>
3030
#include <XEngine_Include/XEngine_BaseLib/BaseLib_Define.h>
3131
#include <XEngine_Include/XEngine_BaseLib/BaseLib_Error.h>
32+
#include <XEngine_Include/XEngine_Core/ManagePool_Define.h>
33+
#include <XEngine_Include/XEngine_Core/ManagePool_Error.h>
3234
#include <XEngine_Include/XEngine_Core/OPenSsl_Define.h>
3335
#include <XEngine_Include/XEngine_Core/OPenSsl_Error.h>
3436
#include <XEngine_Include/XEngine_HelpComponents/DataBase_Define.h>

XEngine_Source/XEngine_StorageApp/StorageApp_Center.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ XHTHREAD CALLBACK XEngine_Center_HTTPThread(XPVOID lParam)
1111
if (HttpProtocol_Server_EventWaitEx(xhCenterHttp, nThreadPos))
1212
{
1313
int nListCount = 0;
14-
RFCCOMPONENTS_HTTP_PKTCLIENT** ppSt_PKTClient;
14+
XENGINE_MANAGEPOOL_TASKEVENT** ppSt_PKTClient;
1515
//获取当前队列池中所有触发上传客户端
1616
HttpProtocol_Server_GetPoolEx(xhCenterHttp, nThreadPos, &ppSt_PKTClient, &nListCount);
1717
for (int i = 0; i < nListCount; i++)

XEngine_Source/XEngine_StorageApp/StorageApp_Download.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ XHTHREAD CALLBACK XEngine_Download_HTTPThread(XPVOID lParam)
1111
if (HttpProtocol_Server_EventWaitEx(xhDLHttp, nThreadPos))
1212
{
1313
int nListCount = 0;
14-
RFCCOMPONENTS_HTTP_PKTCLIENT** ppSt_PKTClient;
14+
XENGINE_MANAGEPOOL_TASKEVENT** ppSt_PKTClient;
1515
//获取当前队列池中所有触发下载客户端
1616
HttpProtocol_Server_GetPoolEx(xhDLHttp, nThreadPos, &ppSt_PKTClient, &nListCount);
1717
for (int i = 0; i < nListCount; i++)

XEngine_Source/XEngine_StorageApp/StorageApp_UPLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ XHTHREAD CALLBACK XEngine_UPLoader_HTTPThread(XPVOID lParam)
1111
if (HttpProtocol_Server_EventWaitEx(xhUPHttp, nThreadPos))
1212
{
1313
int nListCount = 0;
14-
RFCCOMPONENTS_HTTP_PKTCLIENT** ppSt_PKTClient;
14+
XENGINE_MANAGEPOOL_TASKEVENT** ppSt_PKTClient;
1515
//获取当前队列池中所有触发上传客户端
1616
HttpProtocol_Server_GetPoolEx(xhUPHttp, nThreadPos, &ppSt_PKTClient, &nListCount);
1717
for (int i = 0; i < nListCount; i++)

0 commit comments

Comments
 (0)