mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-06-28 20:05:08 +03:00
v4.27-9664-beta
This commit is contained in:
parent
c23142a8ff
commit
afa4366269
@ -135,10 +135,10 @@
|
|||||||
|
|
||||||
|
|
||||||
// Version number
|
// Version number
|
||||||
#define CEDAR_VER 425
|
#define CEDAR_VER 427
|
||||||
|
|
||||||
// Build Number
|
// Build Number
|
||||||
#define CEDAR_BUILD 9656
|
#define CEDAR_BUILD 9664
|
||||||
|
|
||||||
// Beta number
|
// Beta number
|
||||||
//#define BETA_NUMBER 3
|
//#define BETA_NUMBER 3
|
||||||
@ -158,11 +158,11 @@
|
|||||||
|
|
||||||
// Specifies the build date
|
// Specifies the build date
|
||||||
#define BUILD_DATE_Y 2018
|
#define BUILD_DATE_Y 2018
|
||||||
#define BUILD_DATE_M 1
|
#define BUILD_DATE_M 4
|
||||||
#define BUILD_DATE_D 15
|
#define BUILD_DATE_D 20
|
||||||
#define BUILD_DATE_HO 9
|
#define BUILD_DATE_HO 16
|
||||||
#define BUILD_DATE_MI 33
|
#define BUILD_DATE_MI 26
|
||||||
#define BUILD_DATE_SE 22
|
#define BUILD_DATE_SE 40
|
||||||
|
|
||||||
// Tolerable time difference
|
// Tolerable time difference
|
||||||
#define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000)
|
#define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000)
|
||||||
|
@ -266,6 +266,8 @@ void IPsecWin7UpdateHostIPAddressList(IPSEC_WIN7 *w)
|
|||||||
|
|
||||||
buf = NewBuf();
|
buf = NewBuf();
|
||||||
|
|
||||||
|
Debug("***** IPsecWin7UpdateHostIPAddressList Begin *****\n");
|
||||||
|
|
||||||
for (i = 0;i < LIST_NUM(o);i++)
|
for (i = 0;i < LIST_NUM(o);i++)
|
||||||
{
|
{
|
||||||
IP *ip = LIST_DATA(o, i);
|
IP *ip = LIST_DATA(o, i);
|
||||||
@ -287,6 +289,8 @@ void IPsecWin7UpdateHostIPAddressList(IPSEC_WIN7 *w)
|
|||||||
Copy(a.IpAddress.IPv6Address, ip->ipv6_addr, 16);
|
Copy(a.IpAddress.IPv6Address, ip->ipv6_addr, 16);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Debug("IP %u: %r\n", i, ip);
|
||||||
|
|
||||||
WriteBuf(buf, &a, sizeof(WFP_LOCAL_IP));
|
WriteBuf(buf, &a, sizeof(WFP_LOCAL_IP));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -299,6 +303,8 @@ void IPsecWin7UpdateHostIPAddressList(IPSEC_WIN7 *w)
|
|||||||
FreeHostIPAddressList(o);
|
FreeHostIPAddressList(o);
|
||||||
|
|
||||||
FreeBuf(buf);
|
FreeBuf(buf);
|
||||||
|
|
||||||
|
Debug("***** IPsecWin7UpdateHostIPAddressList End *****\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Release the module
|
// Release the module
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
BUILD_NUMBER 9656
|
BUILD_NUMBER 9664
|
||||||
VERSION 425
|
VERSION 427
|
||||||
BUILD_NAME rtm
|
BUILD_NAME beta
|
||||||
BUILD_DATE 20180115_093322
|
BUILD_DATE 20180420_162640
|
||||||
|
@ -156,6 +156,20 @@ static bool probe_enabled = false;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// The function which should be called once as soon as possible after the process is started
|
||||||
|
static bool init_proc_once_flag = false;
|
||||||
|
void InitProcessCallOnce()
|
||||||
|
{
|
||||||
|
if (init_proc_once_flag == false)
|
||||||
|
{
|
||||||
|
init_proc_once_flag = true;
|
||||||
|
|
||||||
|
#ifdef OS_WIN32
|
||||||
|
MsInitProcessCallOnce();
|
||||||
|
#endif // OS_WIN32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Calculate the checksum
|
// Calculate the checksum
|
||||||
USHORT CalcChecksum16(void *buf, UINT size)
|
USHORT CalcChecksum16(void *buf, UINT size)
|
||||||
{
|
{
|
||||||
@ -490,6 +504,8 @@ void InitMayaqua(bool memcheck, bool debug, int argc, char **argv)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InitProcessCallOnce();
|
||||||
|
|
||||||
g_memcheck = memcheck;
|
g_memcheck = memcheck;
|
||||||
g_debug = debug;
|
g_debug = debug;
|
||||||
cmdline = NULL;
|
cmdline = NULL;
|
||||||
|
@ -133,6 +133,8 @@
|
|||||||
|
|
||||||
#endif // VPN_SPEED
|
#endif // VPN_SPEED
|
||||||
|
|
||||||
|
void InitProcessCallOnce();
|
||||||
|
|
||||||
#ifdef VPN_EXE
|
#ifdef VPN_EXE
|
||||||
// To build the executable file
|
// To build the executable file
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
@ -142,6 +144,7 @@ int main(int argc, char *argv[]);
|
|||||||
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
|
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
|
||||||
{
|
{
|
||||||
char *argv[] = { CmdLine, };
|
char *argv[] = { CmdLine, };
|
||||||
|
InitProcessCallOnce();
|
||||||
return main(1, argv);
|
return main(1, argv);
|
||||||
}
|
}
|
||||||
#endif // WIN32
|
#endif // WIN32
|
||||||
|
@ -273,6 +273,43 @@ typedef struct MS_MSCHAPV2_PARAMS
|
|||||||
UCHAR ResponseBuffer[MAX_SIZE];
|
UCHAR ResponseBuffer[MAX_SIZE];
|
||||||
} MS_MSCHAPV2_PARAMS;
|
} MS_MSCHAPV2_PARAMS;
|
||||||
|
|
||||||
|
// The function which should be called once as soon as possible after the process is started
|
||||||
|
void MsInitProcessCallOnce()
|
||||||
|
{
|
||||||
|
// Mitigate the DLL injection attack
|
||||||
|
char system_dir[MAX_PATH];
|
||||||
|
char kernel32_path[MAX_PATH];
|
||||||
|
UINT len;
|
||||||
|
HINSTANCE hKernel32;
|
||||||
|
|
||||||
|
// Get the full path of kernel32.dll
|
||||||
|
memset(system_dir, 0, sizeof(system_dir));
|
||||||
|
GetSystemDirectory(system_dir, sizeof(system_dir));
|
||||||
|
len = lstrlenA(system_dir);
|
||||||
|
if (system_dir[len] == '\\')
|
||||||
|
{
|
||||||
|
system_dir[len] = 0;
|
||||||
|
}
|
||||||
|
wsprintfA(kernel32_path, "%s\\kernel32.dll", system_dir);
|
||||||
|
|
||||||
|
// Load kernel32.dll
|
||||||
|
hKernel32 = LoadLibraryA(kernel32_path);
|
||||||
|
if (hKernel32 != NULL)
|
||||||
|
{
|
||||||
|
BOOL (WINAPI *_SetDllDirectoryA)(LPCTSTR);
|
||||||
|
|
||||||
|
_SetDllDirectoryA = (BOOL (WINAPI *)(LPCTSTR))
|
||||||
|
GetProcAddress(hKernel32, "SetDllDirectoryA");
|
||||||
|
|
||||||
|
if (_SetDllDirectoryA != NULL)
|
||||||
|
{
|
||||||
|
_SetDllDirectoryA("");
|
||||||
|
}
|
||||||
|
|
||||||
|
FreeLibrary(hKernel32);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Collect the information of the VPN software
|
// Collect the information of the VPN software
|
||||||
bool MsCollectVpnInfo(BUF *bat, char *tmpdir, char *svc_name, wchar_t *config_name, wchar_t *logdir_name)
|
bool MsCollectVpnInfo(BUF *bat, char *tmpdir, char *svc_name, wchar_t *config_name, wchar_t *logdir_name)
|
||||||
{
|
{
|
||||||
|
@ -1160,6 +1160,7 @@ void MsTest();
|
|||||||
|
|
||||||
bool MsSaveSystemInfo(wchar_t *dst_filename);
|
bool MsSaveSystemInfo(wchar_t *dst_filename);
|
||||||
bool MsCollectVpnInfo(BUF *bat, char *tmpdir, char *svc_name, wchar_t *config_name, wchar_t *logdir_name);
|
bool MsCollectVpnInfo(BUF *bat, char *tmpdir, char *svc_name, wchar_t *config_name, wchar_t *logdir_name);
|
||||||
|
void MsInitProcessCallOnce();
|
||||||
|
|
||||||
MS_SUSPEND_HANDLER *MsNewSuspendHandler();
|
MS_SUSPEND_HANDLER *MsNewSuspendHandler();
|
||||||
void MsFreeSuspendHandler(MS_SUSPEND_HANDLER *h);
|
void MsFreeSuspendHandler(MS_SUSPEND_HANDLER *h);
|
||||||
|
@ -19750,6 +19750,8 @@ LIST *GetHostIPAddressListInternal()
|
|||||||
struct addrinfo hint;
|
struct addrinfo hint;
|
||||||
struct addrinfo *info;
|
struct addrinfo *info;
|
||||||
|
|
||||||
|
// Debug("***** GetHostIPAddressListInternal IPv4 Begin *****\n");
|
||||||
|
|
||||||
Zero(&hint, sizeof(hint));
|
Zero(&hint, sizeof(hint));
|
||||||
hint.ai_family = AF_INET;
|
hint.ai_family = AF_INET;
|
||||||
hint.ai_socktype = SOCK_DGRAM;
|
hint.ai_socktype = SOCK_DGRAM;
|
||||||
@ -19771,12 +19773,15 @@ LIST *GetHostIPAddressListInternal()
|
|||||||
InAddrToIP(&ip, &addr);
|
InAddrToIP(&ip, &addr);
|
||||||
AddHostIPAddressToList(o, &ip);
|
AddHostIPAddressToList(o, &ip);
|
||||||
|
|
||||||
|
// Debug("%r\n", &ip);
|
||||||
|
|
||||||
current = current->ai_next;
|
current = current->ai_next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
freeaddrinfo(info);
|
freeaddrinfo(info);
|
||||||
}
|
}
|
||||||
|
// Debug("***** GetHostIPAddressListInternal IPv4 End *****\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef UNIX_LINUX
|
#ifndef UNIX_LINUX
|
||||||
@ -19794,6 +19799,8 @@ LIST *GetHostIPAddressListInternal()
|
|||||||
hint.ai_protocol = IPPROTO_UDP;
|
hint.ai_protocol = IPPROTO_UDP;
|
||||||
info = NULL;
|
info = NULL;
|
||||||
|
|
||||||
|
// Debug("***** GetHostIPAddressListInternal IPv6 Begin *****\n");
|
||||||
|
|
||||||
if (getaddrinfo(hostname, NULL, &hint, &info) == 0)
|
if (getaddrinfo(hostname, NULL, &hint, &info) == 0)
|
||||||
{
|
{
|
||||||
if (info->ai_family == AF_INET6)
|
if (info->ai_family == AF_INET6)
|
||||||
@ -19811,12 +19818,15 @@ LIST *GetHostIPAddressListInternal()
|
|||||||
|
|
||||||
AddHostIPAddressToList(o, &ip);
|
AddHostIPAddressToList(o, &ip);
|
||||||
|
|
||||||
|
// Debug("%r\n", &ip);
|
||||||
|
|
||||||
current = current->ai_next;
|
current = current->ai_next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
freeaddrinfo(info);
|
freeaddrinfo(info);
|
||||||
}
|
}
|
||||||
|
// Debug("***** GetHostIPAddressListInternal IPv6 End *****\n");
|
||||||
}
|
}
|
||||||
#endif // UNIX_LINUX
|
#endif // UNIX_LINUX
|
||||||
#endif // MAYAQUA_SUPPORTS_GETIFADDRS
|
#endif // MAYAQUA_SUPPORTS_GETIFADDRS
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
|
|
||||||
static UINT64 max_speed = NEO_MAX_SPEED_DEFAULT;
|
static UINT64 max_speed = NEO_MAX_SPEED_DEFAULT;
|
||||||
static bool keep_link = false;
|
static bool keep_link = false;
|
||||||
|
static UINT reg_if_type = IF_TYPE_ETHERNET_CSMACD;
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
PsGetVersion(
|
PsGetVersion(
|
||||||
@ -350,8 +351,8 @@ NDIS_STATUS NeoNdisInitEx(NDIS_HANDLE MiniportAdapterHandle,
|
|||||||
gen.AccessType = NET_IF_ACCESS_BROADCAST;
|
gen.AccessType = NET_IF_ACCESS_BROADCAST;
|
||||||
gen.DirectionType = NET_IF_DIRECTION_SENDRECEIVE;
|
gen.DirectionType = NET_IF_DIRECTION_SENDRECEIVE;
|
||||||
gen.ConnectionType = NET_IF_CONNECTION_DEDICATED;
|
gen.ConnectionType = NET_IF_CONNECTION_DEDICATED;
|
||||||
gen.IfType = IF_TYPE_ETHERNET_CSMACD;
|
gen.IfType = reg_if_type;
|
||||||
gen.IfConnectorPresent = TRUE;
|
gen.IfConnectorPresent = FALSE;
|
||||||
gen.SupportedStatistics =
|
gen.SupportedStatistics =
|
||||||
NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV |
|
NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV |
|
||||||
NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV |
|
NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV |
|
||||||
@ -897,6 +898,20 @@ BOOL NeoLoadRegistory()
|
|||||||
|
|
||||||
keep_link = keep;
|
keep_link = keep;
|
||||||
|
|
||||||
|
// Read the *IfType value
|
||||||
|
name = NewUnicode("*IfType");
|
||||||
|
NdisReadConfiguration(&ret, ¶m, config, GetUnicode(name), NdisParameterInteger);
|
||||||
|
FreeUnicode(name);
|
||||||
|
|
||||||
|
if (NG(ret) || param->ParameterType != NdisParameterInteger)
|
||||||
|
{
|
||||||
|
reg_if_type = IF_TYPE_ETHERNET_CSMACD;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
reg_if_type = param->ParameterData.IntegerData;
|
||||||
|
}
|
||||||
|
|
||||||
// Close the config handle
|
// Close the config handle
|
||||||
NdisCloseConfiguration(config);
|
NdisCloseConfiguration(config);
|
||||||
|
|
||||||
|
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201626.032
|
; Auto Generated 20180205_163608.742
|
||||||
|
|
||||||
|
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201626.029
|
; Auto Generated 20180205_163608.741
|
||||||
|
|
||||||
|
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ $TAG_SYS_NAME$, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201626.038
|
; Auto Generated 20180205_163608.745
|
||||||
|
|
||||||
|
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ $TAG_SYS_NAME$, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201626.035
|
; Auto Generated 20180205_163608.744
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN.cat
|
CatalogFile.NT = Neo6_x64_VPN.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201643.395
|
; Auto Generated 20180205_163621.381
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN10.cat
|
CatalogFile.NT = Neo6_x64_VPN10.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN10.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201644.250
|
; Auto Generated 20180205_163622.029
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN100.cat
|
CatalogFile.NT = Neo6_x64_VPN100.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN100.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201652.798
|
; Auto Generated 20180205_163628.442
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN101.cat
|
CatalogFile.NT = Neo6_x64_VPN101.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN101.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201652.893
|
; Auto Generated 20180205_163628.518
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN102.cat
|
CatalogFile.NT = Neo6_x64_VPN102.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN102.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201652.987
|
; Auto Generated 20180205_163628.591
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN103.cat
|
CatalogFile.NT = Neo6_x64_VPN103.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN103.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.082
|
; Auto Generated 20180205_163628.664
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN104.cat
|
CatalogFile.NT = Neo6_x64_VPN104.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN104.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.176
|
; Auto Generated 20180205_163628.735
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN105.cat
|
CatalogFile.NT = Neo6_x64_VPN105.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN105.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.270
|
; Auto Generated 20180205_163628.808
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN106.cat
|
CatalogFile.NT = Neo6_x64_VPN106.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN106.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.364
|
; Auto Generated 20180205_163628.880
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN107.cat
|
CatalogFile.NT = Neo6_x64_VPN107.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN107.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.458
|
; Auto Generated 20180205_163628.951
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN108.cat
|
CatalogFile.NT = Neo6_x64_VPN108.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN108.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.553
|
; Auto Generated 20180205_163629.021
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN109.cat
|
CatalogFile.NT = Neo6_x64_VPN109.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN109.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.657
|
; Auto Generated 20180205_163629.091
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN11.cat
|
CatalogFile.NT = Neo6_x64_VPN11.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN11.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201644.345
|
; Auto Generated 20180205_163622.101
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN110.cat
|
CatalogFile.NT = Neo6_x64_VPN110.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN110.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.752
|
; Auto Generated 20180205_163629.164
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN111.cat
|
CatalogFile.NT = Neo6_x64_VPN111.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN111.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.846
|
; Auto Generated 20180205_163629.237
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN112.cat
|
CatalogFile.NT = Neo6_x64_VPN112.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN112.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201653.940
|
; Auto Generated 20180205_163629.312
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN113.cat
|
CatalogFile.NT = Neo6_x64_VPN113.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN113.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.035
|
; Auto Generated 20180205_163629.382
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN114.cat
|
CatalogFile.NT = Neo6_x64_VPN114.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN114.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.131
|
; Auto Generated 20180205_163629.453
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN115.cat
|
CatalogFile.NT = Neo6_x64_VPN115.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN115.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.225
|
; Auto Generated 20180205_163629.522
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN116.cat
|
CatalogFile.NT = Neo6_x64_VPN116.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN116.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.319
|
; Auto Generated 20180205_163629.594
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN117.cat
|
CatalogFile.NT = Neo6_x64_VPN117.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN117.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.414
|
; Auto Generated 20180205_163629.664
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN118.cat
|
CatalogFile.NT = Neo6_x64_VPN118.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN118.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.509
|
; Auto Generated 20180205_163629.737
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN119.cat
|
CatalogFile.NT = Neo6_x64_VPN119.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN119.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.603
|
; Auto Generated 20180205_163629.808
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN12.cat
|
CatalogFile.NT = Neo6_x64_VPN12.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN12.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201644.439
|
; Auto Generated 20180205_163622.172
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN120.cat
|
CatalogFile.NT = Neo6_x64_VPN120.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN120.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.697
|
; Auto Generated 20180205_163629.881
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN121.cat
|
CatalogFile.NT = Neo6_x64_VPN121.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN121.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.791
|
; Auto Generated 20180205_163629.951
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN122.cat
|
CatalogFile.NT = Neo6_x64_VPN122.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN122.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.888
|
; Auto Generated 20180205_163630.023
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -3,14 +3,14 @@
|
|||||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||||
; http://www.softether.co.jp/
|
; http://www.softether.co.jp/
|
||||||
;
|
;
|
||||||
; BUILD 9594
|
; BUILD 9658
|
||||||
|
|
||||||
[Version]
|
[Version]
|
||||||
Signature = "$Windows NT$"
|
Signature = "$Windows NT$"
|
||||||
Class = Net
|
Class = Net
|
||||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||||
Provider = %CompanyName%
|
Provider = %CompanyName%
|
||||||
DriverVer = 10/17/2015, 4.19.0.9594
|
DriverVer = 02/04/2018, 4.25.0.9658
|
||||||
CatalogFile.NT = Neo6_x64_VPN123.cat
|
CatalogFile.NT = Neo6_x64_VPN123.cat
|
||||||
|
|
||||||
[Manufacturer]
|
[Manufacturer]
|
||||||
@ -36,7 +36,7 @@ Neo6_x64_VPN123.sys, , , 2
|
|||||||
Characteristics = 0x1
|
Characteristics = 0x1
|
||||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||||
CopyFiles = Neo.CopyFiles.Sys
|
CopyFiles = Neo.CopyFiles.Sys
|
||||||
*IfType = 6
|
*IfType = 53
|
||||||
*MediaType = 0
|
*MediaType = 0
|
||||||
*PhysicalMediaType = 0
|
*PhysicalMediaType = 0
|
||||||
|
|
||||||
@ -110,5 +110,5 @@ On = "On"
|
|||||||
Off = "Off"
|
Off = "Off"
|
||||||
|
|
||||||
|
|
||||||
; Auto Generated 20151018_201654.983
|
; Auto Generated 20180205_163630.096
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user