Skip to content

Commit 7aba019

Browse files
committed
delete:proxy full enable field
1 parent 070fd59 commit 7aba019

File tree

6 files changed

+2
-4
lines changed

6 files changed

+2
-4
lines changed

CHANGELOG

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ XEngine_ProxyServer V1.12.0.1001
88
修改:统一转发和隧道代理错误
99
修改:匿名转发打印问题
1010
修改:全代理多后端支持
11+
修改:信息报告现在可以直接发送获取次数了
1112
修正:没有输出转发绑定错误信息的问题
1213
修正:转发网络的问题在接受数据时不会区分命名和匿名数据
1314
修正:匿名保存客户端地址丢失问题
@@ -21,7 +22,7 @@ improved:forward protocol handle
2122
modify:unified forward and tunnel error code
2223
modify:print port for anny forward
2324
modify:multi back-end support for proxy full
24-
modify:
25+
modify:get time when send for report info
2526
fixed:not print forward bind error
2627
fixed:issue with forwarding network not distinguishing between named and anonymized data when accepting data
2728
fixed:anony save client addr lost port

XEngine_Docment/Docment_en.docx

-850 Bytes
Binary file not shown.

XEngine_Docment/Docment_zh.docx

-144 Bytes
Binary file not shown.

XEngine_Release/XEngine_Config/XEngine_Config.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"tszServiceName":"XEngine_ProxyServer"
3232
},
3333
"XProxy": {
34-
"bEnable": false,
3534
"tszDefaultAddr": "10.0.4.69:5403",
3635
"tszRuleIPAddr": [
3736
"10.0.0.1-10.0.4.69:5403",

XEngine_Source/XEngine_ModuleConfigure/ModuleConfig_Define.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ typedef struct tag_XEngine_ServiceConfig
5252
}st_XReport;
5353
struct
5454
{
55-
bool bEnable;
5655
XCHAR tszDefaultAddr[128];
5756
std::list<xstring>* pStl_ListRuleAddr;
5857
}st_XProxy;

XEngine_Source/XEngine_ModuleConfigure/ModuleConfigure_Json/ModuleConfigure_Json.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ bool CModuleConfigure_Json::ModuleConfigure_Json_File(LPCXSTR lpszConfigFile, XE
147147
Json::Value st_JsonXProxy = st_JsonRoot["XProxy"];
148148

149149
pSt_ServerConfig->st_XProxy.pStl_ListRuleAddr = new list<xstring>;
150-
pSt_ServerConfig->st_XProxy.bEnable = st_JsonXProxy["bEnable"].asBool();
151150
_tcsxcpy(pSt_ServerConfig->st_XProxy.tszDefaultAddr, st_JsonXProxy["tszDefaultAddr"].asCString());
152151
if (!st_JsonXProxy["tszRuleIPAddr"].isNull())
153152
{

0 commit comments

Comments
 (0)