Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnobori <da.git@softether.co.jp>2015-02-02 12:54:00 +0300
committerdnobori <da.git@softether.co.jp>2015-02-02 12:54:00 +0300
commit67fbd5657441d1f5e1adcb53961205740073340b (patch)
treefd2c79c291d026371fd6c3ad7b10d4c2bbaf0584 /src/Cedar/Hub.c
parent5efab0381cc9bfc907114f1135005d3aa869776c (diff)
v4.14-9529-beta
Diffstat (limited to 'src/Cedar/Hub.c')
-rw-r--r--src/Cedar/Hub.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Cedar/Hub.c b/src/Cedar/Hub.c
index 35e33659..bced4460 100644
--- a/src/Cedar/Hub.c
+++ b/src/Cedar/Hub.c
@@ -600,6 +600,7 @@ void DataToHubOptionStruct(HUB_OPTION *o, RPC_ADMIN_OPTION *ao)
GetHubAdminOptionDataAndSet(ao, "AssignVLanIdByRadiusAttribute", &o->AssignVLanIdByRadiusAttribute);
GetHubAdminOptionDataAndSet(ao, "SecureNAT_RandomizeAssignIp", &o->SecureNAT_RandomizeAssignIp);
GetHubAdminOptionDataAndSet(ao, "DetectDormantSessionInterval", &o->DetectDormantSessionInterval);
+ GetHubAdminOptionDataAndSet(ao, "NoPhysicalIPOnPacketLog", &o->NoPhysicalIPOnPacketLog);
}
// Convert the contents of the HUB_OPTION to data
@@ -668,6 +669,7 @@ void HubOptionStructToData(RPC_ADMIN_OPTION *ao, HUB_OPTION *o, char *hub_name)
Add(aol, NewAdminOption("AssignVLanIdByRadiusAttribute", o->AssignVLanIdByRadiusAttribute));
Add(aol, NewAdminOption("SecureNAT_RandomizeAssignIp", o->SecureNAT_RandomizeAssignIp));
Add(aol, NewAdminOption("DetectDormantSessionInterval", o->DetectDormantSessionInterval));
+ Add(aol, NewAdminOption("NoPhysicalIPOnPacketLog", o->NoPhysicalIPOnPacketLog));
Zero(ao, sizeof(RPC_ADMIN_OPTION));