mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-06-28 11:55:08 +03:00
v4.27-9664-beta
This commit is contained in:
parent
c23142a8ff
commit
afa4366269
@ -135,10 +135,10 @@
|
||||
|
||||
|
||||
// Version number
|
||||
#define CEDAR_VER 425
|
||||
#define CEDAR_VER 427
|
||||
|
||||
// Build Number
|
||||
#define CEDAR_BUILD 9656
|
||||
#define CEDAR_BUILD 9664
|
||||
|
||||
// Beta number
|
||||
//#define BETA_NUMBER 3
|
||||
@ -158,11 +158,11 @@
|
||||
|
||||
// Specifies the build date
|
||||
#define BUILD_DATE_Y 2018
|
||||
#define BUILD_DATE_M 1
|
||||
#define BUILD_DATE_D 15
|
||||
#define BUILD_DATE_HO 9
|
||||
#define BUILD_DATE_MI 33
|
||||
#define BUILD_DATE_SE 22
|
||||
#define BUILD_DATE_M 4
|
||||
#define BUILD_DATE_D 20
|
||||
#define BUILD_DATE_HO 16
|
||||
#define BUILD_DATE_MI 26
|
||||
#define BUILD_DATE_SE 40
|
||||
|
||||
// Tolerable time difference
|
||||
#define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000)
|
||||
|
@ -266,6 +266,8 @@ void IPsecWin7UpdateHostIPAddressList(IPSEC_WIN7 *w)
|
||||
|
||||
buf = NewBuf();
|
||||
|
||||
Debug("***** IPsecWin7UpdateHostIPAddressList Begin *****\n");
|
||||
|
||||
for (i = 0;i < LIST_NUM(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);
|
||||
}
|
||||
|
||||
Debug("IP %u: %r\n", i, ip);
|
||||
|
||||
WriteBuf(buf, &a, sizeof(WFP_LOCAL_IP));
|
||||
}
|
||||
}
|
||||
@ -299,6 +303,8 @@ void IPsecWin7UpdateHostIPAddressList(IPSEC_WIN7 *w)
|
||||
FreeHostIPAddressList(o);
|
||||
|
||||
FreeBuf(buf);
|
||||
|
||||
Debug("***** IPsecWin7UpdateHostIPAddressList End *****\n");
|
||||
}
|
||||
|
||||
// Release the module
|
||||
|
@ -1,4 +1,4 @@
|
||||
BUILD_NUMBER 9656
|
||||
VERSION 425
|
||||
BUILD_NAME rtm
|
||||
BUILD_DATE 20180115_093322
|
||||
BUILD_NUMBER 9664
|
||||
VERSION 427
|
||||
BUILD_NAME beta
|
||||
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
|
||||
USHORT CalcChecksum16(void *buf, UINT size)
|
||||
{
|
||||
@ -490,6 +504,8 @@ void InitMayaqua(bool memcheck, bool debug, int argc, char **argv)
|
||||
return;
|
||||
}
|
||||
|
||||
InitProcessCallOnce();
|
||||
|
||||
g_memcheck = memcheck;
|
||||
g_debug = debug;
|
||||
cmdline = NULL;
|
||||
|
@ -133,6 +133,8 @@
|
||||
|
||||
#endif // VPN_SPEED
|
||||
|
||||
void InitProcessCallOnce();
|
||||
|
||||
#ifdef VPN_EXE
|
||||
// To build the executable file
|
||||
#ifdef WIN32
|
||||
@ -142,6 +144,7 @@ int main(int argc, char *argv[]);
|
||||
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
|
||||
{
|
||||
char *argv[] = { CmdLine, };
|
||||
InitProcessCallOnce();
|
||||
return main(1, argv);
|
||||
}
|
||||
#endif // WIN32
|
||||
|
@ -273,6 +273,43 @@ typedef struct MS_MSCHAPV2_PARAMS
|
||||
UCHAR ResponseBuffer[MAX_SIZE];
|
||||
} 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
|
||||
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 MsCollectVpnInfo(BUF *bat, char *tmpdir, char *svc_name, wchar_t *config_name, wchar_t *logdir_name);
|
||||
void MsInitProcessCallOnce();
|
||||
|
||||
MS_SUSPEND_HANDLER *MsNewSuspendHandler();
|
||||
void MsFreeSuspendHandler(MS_SUSPEND_HANDLER *h);
|
||||
|
@ -19750,6 +19750,8 @@ LIST *GetHostIPAddressListInternal()
|
||||
struct addrinfo hint;
|
||||
struct addrinfo *info;
|
||||
|
||||
// Debug("***** GetHostIPAddressListInternal IPv4 Begin *****\n");
|
||||
|
||||
Zero(&hint, sizeof(hint));
|
||||
hint.ai_family = AF_INET;
|
||||
hint.ai_socktype = SOCK_DGRAM;
|
||||
@ -19771,12 +19773,15 @@ LIST *GetHostIPAddressListInternal()
|
||||
InAddrToIP(&ip, &addr);
|
||||
AddHostIPAddressToList(o, &ip);
|
||||
|
||||
// Debug("%r\n", &ip);
|
||||
|
||||
current = current->ai_next;
|
||||
}
|
||||
}
|
||||
|
||||
freeaddrinfo(info);
|
||||
}
|
||||
// Debug("***** GetHostIPAddressListInternal IPv4 End *****\n");
|
||||
}
|
||||
|
||||
#ifndef UNIX_LINUX
|
||||
@ -19794,6 +19799,8 @@ LIST *GetHostIPAddressListInternal()
|
||||
hint.ai_protocol = IPPROTO_UDP;
|
||||
info = NULL;
|
||||
|
||||
// Debug("***** GetHostIPAddressListInternal IPv6 Begin *****\n");
|
||||
|
||||
if (getaddrinfo(hostname, NULL, &hint, &info) == 0)
|
||||
{
|
||||
if (info->ai_family == AF_INET6)
|
||||
@ -19811,12 +19818,15 @@ LIST *GetHostIPAddressListInternal()
|
||||
|
||||
AddHostIPAddressToList(o, &ip);
|
||||
|
||||
// Debug("%r\n", &ip);
|
||||
|
||||
current = current->ai_next;
|
||||
}
|
||||
}
|
||||
|
||||
freeaddrinfo(info);
|
||||
}
|
||||
// Debug("***** GetHostIPAddressListInternal IPv6 End *****\n");
|
||||
}
|
||||
#endif // UNIX_LINUX
|
||||
#endif // MAYAQUA_SUPPORTS_GETIFADDRS
|
||||
|
@ -119,6 +119,7 @@
|
||||
|
||||
static UINT64 max_speed = NEO_MAX_SPEED_DEFAULT;
|
||||
static bool keep_link = false;
|
||||
static UINT reg_if_type = IF_TYPE_ETHERNET_CSMACD;
|
||||
|
||||
BOOLEAN
|
||||
PsGetVersion(
|
||||
@ -350,8 +351,8 @@ NDIS_STATUS NeoNdisInitEx(NDIS_HANDLE MiniportAdapterHandle,
|
||||
gen.AccessType = NET_IF_ACCESS_BROADCAST;
|
||||
gen.DirectionType = NET_IF_DIRECTION_SENDRECEIVE;
|
||||
gen.ConnectionType = NET_IF_CONNECTION_DEDICATED;
|
||||
gen.IfType = IF_TYPE_ETHERNET_CSMACD;
|
||||
gen.IfConnectorPresent = TRUE;
|
||||
gen.IfType = reg_if_type;
|
||||
gen.IfConnectorPresent = FALSE;
|
||||
gen.SupportedStatistics =
|
||||
NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV |
|
||||
NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV |
|
||||
@ -897,6 +898,20 @@ BOOL NeoLoadRegistory()
|
||||
|
||||
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
|
||||
NdisCloseConfiguration(config);
|
||||
|
||||
|
@ -3,14 +3,14 @@
|
||||
; Copyright (c) SoftEther Corporation. All Rights Reserved.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||
|
||||
[Manufacturer]
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||
|
||||
[Manufacturer]
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ $TAG_SYS_NAME$, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
;CatalogFile.NT = $CATALOG_FILENAME$
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ $TAG_SYS_NAME$, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN10.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN10.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN100.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN100.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN101.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN101.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN102.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN102.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN103.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN103.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN104.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN104.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN105.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN105.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN106.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN106.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN107.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN107.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN108.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN108.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN109.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN109.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN11.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN11.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN110.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN110.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN111.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN111.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN112.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN112.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN113.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN113.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN114.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN114.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN115.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN115.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN116.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN116.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN117.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN117.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN118.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN118.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN119.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN119.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN12.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN12.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN120.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN120.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN121.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN121.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN122.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN122.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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.
|
||||
; http://www.softether.co.jp/
|
||||
;
|
||||
; BUILD 9594
|
||||
; BUILD 9658
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = Net
|
||||
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %CompanyName%
|
||||
DriverVer = 10/17/2015, 4.19.0.9594
|
||||
DriverVer = 02/04/2018, 4.25.0.9658
|
||||
CatalogFile.NT = Neo6_x64_VPN123.cat
|
||||
|
||||
[Manufacturer]
|
||||
@ -36,7 +36,7 @@ Neo6_x64_VPN123.sys, , , 2
|
||||
Characteristics = 0x1
|
||||
AddReg = Neo.Reg, NeoAdapter.Ndi
|
||||
CopyFiles = Neo.CopyFiles.Sys
|
||||
*IfType = 6
|
||||
*IfType = 53
|
||||
*MediaType = 0
|
||||
*PhysicalMediaType = 0
|
||||
|
||||
@ -110,5 +110,5 @@ On = "On"
|
||||
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