1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 08:14:58 +03:00

v4.18-9570-rtm

This commit is contained in:
dnobori
2015-07-26 19:39:40 +09:00
parent 860f743dd7
commit 4b65e251f2
27 changed files with 53 additions and 53 deletions

View File

@ -235,18 +235,18 @@ bool IsSupportedWinVer(RPC_WINVER *v)
}
}
#if 0
// Enable in future when supported
if ((v->VerMajor == 6 && v->VerMinor == 4) ||(v->VerMajor == 10 && v->VerMinor == 0))
if ((v->VerMajor == 6 && v->VerMinor == 4) || (v->VerMajor == 10 && v->VerMinor == 0))
{
// Windows 10, Server 10
if (v->ServicePack <= 0)
if (v->IsServer == false)
{
// SP0 only
return true;
// Windows 10 (not Windows Server 2016)
if (v->ServicePack <= 0)
{
// SP0 only
return true;
}
}
}
#endif
return false;
}

View File

@ -135,10 +135,10 @@
// Version number
#define CEDAR_VER 417
#define CEDAR_VER 418
// Build Number
#define CEDAR_BUILD 9566
#define CEDAR_BUILD 9570
// Beta number
//#define BETA_NUMBER 3
@ -153,16 +153,16 @@
// Specify the location to build
#ifndef BUILD_PLACE
#define BUILD_PLACE "pc25"
#define BUILD_PLACE "pc30"
#endif // BUILD_PLACE
// Specifies the build date
#define BUILD_DATE_Y 2015
#define BUILD_DATE_M 7
#define BUILD_DATE_D 16
#define BUILD_DATE_HO 21
#define BUILD_DATE_MI 34
#define BUILD_DATE_SE 56
#define BUILD_DATE_D 26
#define BUILD_DATE_HO 14
#define BUILD_DATE_MI 59
#define BUILD_DATE_SE 55
// Tolerable time difference
#define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000)

View File

@ -8450,7 +8450,7 @@ bool CtCreateVLan(CLIENT *c, RPC_CLIENT_CREATE_VLAN *create)
return false;
}
// Regulation in Windows 8
// Regulation in Windows 8 / 10
if (MsIsInfCatalogRequired())
{
if (CiIsValidVLanRegulatedName(create->DeviceName) == false)

View File

@ -109,7 +109,7 @@
// IPsec_Win7.c
// Initialize the helper module for Windows 7 / Windows 8 / Windows Vista / Windows Server 2008 / Windows Server 2008 R2 / Windows Server 2012
// Initialize the helper module for Windows 7 / Windows 8 / Windows Vista / Windows Server 2008 / Windows Server 2008 R2 / Windows Server 2012 / Windows 10
#include <GlobalConst.h>