diff --git a/src/BuildUtil/BuildUtilCommands.cs b/src/BuildUtil/BuildUtilCommands.cs index 4e0c3644..78d19edd 100644 --- a/src/BuildUtil/BuildUtilCommands.cs +++ b/src/BuildUtil/BuildUtilCommands.cs @@ -1322,6 +1322,8 @@ namespace BuildUtil new ConsoleParam("DEST"), new ConsoleParam("COMMENT", ConsoleService.Prompt, "Comment: ", ConsoleService.EvalNotEmpty, null), new ConsoleParam("KERNEL"), + new ConsoleParam("CERTID"), + new ConsoleParam("SHAMODE"), }; ConsoleParamValueList vl = c.ParseCommandList(cmdName, str, args); @@ -1334,7 +1336,10 @@ namespace BuildUtil string comment = vl["COMMENT"].StrValue; bool kernel = vl["KERNEL"].BoolValue; - CodeSign.SignFile(destFileName, srcFileName, comment, kernel); + int certid = vl["CERTID"].IntValue; + int shamode = vl["SHAMODE"].IntValue; + + CodeSign.SignFile(destFileName, srcFileName, comment, kernel, certid, shamode); return 0; } diff --git a/src/BuildUtil/CodeSign.cs b/src/BuildUtil/CodeSign.cs index 0ae698df..0f1dcc34 100644 --- a/src/BuildUtil/CodeSign.cs +++ b/src/BuildUtil/CodeSign.cs @@ -260,16 +260,19 @@ namespace BuildUtil { int cert_id = UsingCertId; - SignFile(destFileName, srcFileName, comment, kernelModeDriver, cert_id); + SignFile(destFileName, srcFileName, comment, kernelModeDriver, cert_id, 0); } - public static void SignFile(string destFileName, string srcFileName, string comment, bool kernelModeDriver, int cert_id) + public static void SignFile(string destFileName, string srcFileName, string comment, bool kernelModeDriver, int cert_id, int sha_mode) { #if !BU_OSS + if (cert_id == 0) + { + cert_id = UsingCertId; + } + Con.WriteLine("Signing for '{0}'...", Path.GetFileName(destFileName)); byte[] srcData = File.ReadAllBytes(srcFileName); - int sha_mode = 0; - if (srcFileName.EndsWith(".msi", StringComparison.InvariantCultureIgnoreCase)) { sha_mode = 1; diff --git a/src/BuildUtil/Win32BuildUtil.cs b/src/BuildUtil/Win32BuildUtil.cs index 4766684c..54f987a6 100644 --- a/src/BuildUtil/Win32BuildUtil.cs +++ b/src/BuildUtil/Win32BuildUtil.cs @@ -1249,7 +1249,7 @@ namespace BuildUtil IO.WriteAllTextWithEncoding(Path.Combine(dst_dir, @"Neo6_Win10\x86\Neo6_x86_" + name + ".inf"), process_inf_file(IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, @"Neo6\x86\Neo6_x86.inf")), build, version, date, sys_name, name, string.Format("Neo6_x86_{0}.cat", name), true), Str.ShiftJisEncoding, false); cat_src_filename.Add("Neo6_x86_" + name + ".inf"); - IO.FileCopy(Path.Combine(src_dir, @"Neo6\x86\Neo6_x86.sys"), Path.Combine(dst_dir, @"Neo6_Win10\x86\Neo6_x86_" + name + ".sys")); + IO.FileCopy(Path.Combine(src_dir, @"Neo6\x86\Neo6_x86_win10.sys"), Path.Combine(dst_dir, @"Neo6_Win10\x86\Neo6_x86_" + name + ".sys")); make_cat_file(Path.Combine(dst_dir, @"Neo6_Win10\x86"), cat_src_filename.ToArray(), "Neo6_x86_" + name + ".cat", true, true); } @@ -1268,7 +1268,7 @@ namespace BuildUtil IO.WriteAllTextWithEncoding(Path.Combine(dst_dir, @"Neo6_Win10\x64\Neo6_x64_" + name + ".inf"), process_inf_file(IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, @"Neo6\x64\Neo6_x64.inf")), build, version, date, sys_name, name, string.Format("Neo6_x64_{0}.cat", name), true), Str.ShiftJisEncoding, false); cat_src_filename.Add("Neo6_x64_" + name + ".inf"); - IO.FileCopy(Path.Combine(src_dir, @"Neo6\x64\Neo6_x64.sys"), Path.Combine(dst_dir, @"Neo6_Win10\x64\Neo6_x64_" + name + ".sys")); + IO.FileCopy(Path.Combine(src_dir, @"Neo6\x64\Neo6_x64_win10.sys"), Path.Combine(dst_dir, @"Neo6_Win10\x64\Neo6_x64_" + name + ".sys")); make_cat_file(Path.Combine(dst_dir, @"Neo6_Win10\x64"), cat_src_filename.ToArray(), "Neo6_x64_" + name + ".cat", true, true); } @@ -1303,7 +1303,7 @@ namespace BuildUtil cat_src_filename.Add("SeLow_x86.inf"); IO.WriteAllTextWithEncoding(Path.Combine(dst_dir, @"SeLow_Win10\x86\SeLow_x86.inf"), process_inf_file(IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, @"SeLow\x86\SeLow_x86.inf")), build, version, date, null, null, "SeLow_Win10_x86.cat", false), Str.ShiftJisEncoding, false); - IO.FileCopy(Path.Combine(src_dir, @"SeLow\x86\SeLow_x86.sys"), Path.Combine(dst_dir, @"SeLow_Win10\x86\SeLow_x86.sys")); + IO.FileCopy(Path.Combine(src_dir, @"SeLow\x86\SeLow_x86_win10.sys"), Path.Combine(dst_dir, @"SeLow_Win10\x86\SeLow_x86.sys")); make_cat_file(Path.Combine(dst_dir, @"SeLow_Win10\x86"), cat_src_filename.ToArray(), "SeLow_Win10_x86.cat", true, false); // SeLow x64 for Windows 10 @@ -1313,7 +1313,7 @@ namespace BuildUtil cat_src_filename.Add("SeLow_x64.inf"); IO.WriteAllTextWithEncoding(Path.Combine(dst_dir, @"SeLow_Win10\x64\SeLow_x64.inf"), process_inf_file(IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, @"SeLow\x64\SeLow_x64.inf")), build, version, date, null, null, "SeLow_Win10_x64.cat", false), Str.ShiftJisEncoding, false); - IO.FileCopy(Path.Combine(src_dir, @"SeLow\x64\SeLow_x64.sys"), Path.Combine(dst_dir, @"SeLow_Win10\x64\SeLow_x64.sys")); + IO.FileCopy(Path.Combine(src_dir, @"SeLow\x64\SeLow_x64_win10.sys"), Path.Combine(dst_dir, @"SeLow_Win10\x64\SeLow_x64.sys")); make_cat_file(Path.Combine(dst_dir, @"SeLow_Win10\x64"), cat_src_filename.ToArray(), "SeLow_Win10_x64.cat", true, false); // Wfp x86 @@ -1345,7 +1345,7 @@ namespace BuildUtil cat_src_filename.Add("pxwfp_x86.inf"); IO.WriteAllTextWithEncoding(Path.Combine(dst_dir, @"Wfp_Win10\x86\pxwfp_x86.inf"), process_inf_file(IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, @"Wfp\x86\pxwfp_x86.inf")), build, version, date, null, null, "pxwfp_Win10_x86.cat", false), Str.ShiftJisEncoding, false); - IO.FileCopy(Path.Combine(src_dir, @"Wfp\x86\pxwfp_x86.sys"), Path.Combine(dst_dir, @"Wfp_Win10\x86\pxwfp_x86.sys")); + IO.FileCopy(Path.Combine(src_dir, @"Wfp\x86\pxwfp_x86_win10.sys"), Path.Combine(dst_dir, @"Wfp_Win10\x86\pxwfp_x86.sys")); make_cat_file(Path.Combine(dst_dir, @"Wfp_Win10\x86"), cat_src_filename.ToArray(), "pxwfp_Win10_x86.cat", true, false); // Wfp x64 for Windows 10 @@ -1355,7 +1355,7 @@ namespace BuildUtil cat_src_filename.Add("pxwfp_x64.inf"); IO.WriteAllTextWithEncoding(Path.Combine(dst_dir, @"Wfp_Win10\x64\pxwfp_x64.inf"), process_inf_file(IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, @"Wfp\x64\pxwfp_x64.inf")), build, version, date, null, null, "pxwfp_Win10_x64.cat", false), Str.ShiftJisEncoding, false); - IO.FileCopy(Path.Combine(src_dir, @"Wfp\x64\pxwfp_x64.sys"), Path.Combine(dst_dir, @"Wfp_Win10\x64\pxwfp_x64.sys")); + IO.FileCopy(Path.Combine(src_dir, @"Wfp\x64\pxwfp_x64_win10.sys"), Path.Combine(dst_dir, @"Wfp_Win10\x64\pxwfp_x64.sys")); make_cat_file(Path.Combine(dst_dir, @"Wfp_Win10\x64"), cat_src_filename.ToArray(), "pxwfp_Win10_x64.cat", true, false); string tmp_body = IO.ReadAllTextWithAutoGetEncoding(Path.Combine(src_dir, "make_whql_submission.cm_")); diff --git a/src/Cedar/Cedar.h b/src/Cedar/Cedar.h index 78c4192a..5e7d2249 100644 --- a/src/Cedar/Cedar.h +++ b/src/Cedar/Cedar.h @@ -135,10 +135,10 @@ // Version number -#define CEDAR_VER 418 +#define CEDAR_VER 419 // Build Number -#define CEDAR_BUILD 9570 +#define CEDAR_BUILD 9577 // Beta number //#define BETA_NUMBER 3 @@ -153,16 +153,16 @@ // Specify the location to build #ifndef BUILD_PLACE -#define BUILD_PLACE "pc30" +#define BUILD_PLACE "pc25" #endif // BUILD_PLACE // Specifies the build date #define BUILD_DATE_Y 2015 -#define BUILD_DATE_M 7 -#define BUILD_DATE_D 26 -#define BUILD_DATE_HO 14 -#define BUILD_DATE_MI 59 -#define BUILD_DATE_SE 55 +#define BUILD_DATE_M 9 +#define BUILD_DATE_D 15 +#define BUILD_DATE_HO 9 +#define BUILD_DATE_MI 39 +#define BUILD_DATE_SE 23 // Tolerable time difference #define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000) diff --git a/src/CurrentBuild.txt b/src/CurrentBuild.txt index b4969b23..888fa39b 100644 --- a/src/CurrentBuild.txt +++ b/src/CurrentBuild.txt @@ -1,4 +1,4 @@ -BUILD_NUMBER 9570 -VERSION 418 -BUILD_NAME rtm -BUILD_DATE 20150726_145955 +BUILD_NUMBER 9577 +VERSION 419 +BUILD_NAME beta +BUILD_DATE 20150915_093923 diff --git a/src/Makefile64 b/src/Makefile64 deleted file mode 100644 index 405a284d..00000000 --- a/src/Makefile64 +++ /dev/null @@ -1,361 +0,0 @@ -# PacketiX VPN Source Code -# Copyright (c) SoftEther Corporation. All Rights Reserved. -# Platform: linux-x86-64bit - -# Variables -CC=gcc - -OPTIONS_COMPILE_DEBUG=-DUNIX_LINUX -DCPU_64 -DCPU_X64 -D_DEBUG -DDEBUG -DUNIX -D_REENTRANT -DREENTRANT -D_THREAD_SAFE -D_THREADSAFE -DTHREAD_SAFE -DTHREADSAFE -D_FILE_OFFSET_BITS=64 -I./ -I./Cedar/ -I./Mayaqua/ -g -fsigned-char -pthread -m64 - -OPTIONS_LINK_DEBUG=-g -fsigned-char -pthread -m64 -lm -ldl -lrt -lpthread -L./ lib/64/libssl.a lib/64/libcrypto.a lib/64/libiconv.a lib/64/libcharset.a lib/64/libedit.a lib/64/libncurses.a lib/64/libz.a lib/64/libintelaes.a - -OPTIONS_COMPILE_RELEASE=-DUNIX_LINUX -DCPU_64 -DCPU_X64 -DNDEBUG -DVPN_SPEED -DMAYAQUA_REPLACE -DUNIX -D_REENTRANT -DREENTRANT -D_THREAD_SAFE -D_THREADSAFE -DTHREAD_SAFE -DTHREADSAFE -D_FILE_OFFSET_BITS=64 -I./ -I./Cedar/ -I./Mayaqua/ -O2 -fsigned-char -pthread -m64 - -OPTIONS_LINK_RELEASE=-O2 -fsigned-char -pthread -m64 -lm -ldl -lrt -lpthread -L./ lib/64/libssl.a lib/64/libcrypto.a lib/64/libiconv.a lib/64/libcharset.a lib/64/libedit.a lib/64/libncurses.a lib/64/libz.a lib/64/libintelaes.a - -ifeq ($(DEBUG),YES) - OPTIONS_COMPILE=$(OPTIONS_COMPILE_DEBUG) - OPTIONS_LINK=$(OPTIONS_LINK_DEBUG) -else - OPTIONS_COMPILE=$(OPTIONS_COMPILE_RELEASE) - OPTIONS_LINK=$(OPTIONS_LINK_RELEASE) -endif - -# Files -HEADERS_MAYAQUA=Mayaqua/Cfg.h Mayaqua/cryptoki.h Mayaqua/Encrypt.h Mayaqua/FileIO.h Mayaqua/intelaes/iaesni.h Mayaqua/Internat.h Mayaqua/Kernel.h Mayaqua/Mayaqua.h Mayaqua/MayaType.h Mayaqua/Memory.h Mayaqua/Microsoft.h Mayaqua/Network.h Mayaqua/Object.h Mayaqua/openssl/aes.h Mayaqua/openssl/asn1.h Mayaqua/openssl/asn1_mac.h Mayaqua/openssl/asn1t.h Mayaqua/openssl/bio.h Mayaqua/openssl/blowfish.h Mayaqua/openssl/bn.h Mayaqua/openssl/buffer.h Mayaqua/openssl/cast.h Mayaqua/openssl/comp.h Mayaqua/openssl/conf.h Mayaqua/openssl/conf_api.h Mayaqua/openssl/crypto.h Mayaqua/openssl/des.h Mayaqua/openssl/des_old.h Mayaqua/openssl/dh.h Mayaqua/openssl/dsa.h Mayaqua/openssl/dso.h Mayaqua/openssl/dtls1.h Mayaqua/openssl/e_os2.h Mayaqua/openssl/ebcdic.h Mayaqua/openssl/ec.h Mayaqua/openssl/ecdh.h Mayaqua/openssl/ecdsa.h Mayaqua/openssl/engine.h Mayaqua/openssl/err.h Mayaqua/openssl/evp.h Mayaqua/openssl/hmac.h Mayaqua/openssl/idea.h Mayaqua/openssl/krb5_asn.h Mayaqua/openssl/kssl.h Mayaqua/openssl/lhash.h Mayaqua/openssl/md4.h Mayaqua/openssl/md5.h Mayaqua/openssl/mdc2.h Mayaqua/openssl/obj_mac.h Mayaqua/openssl/objects.h Mayaqua/openssl/ocsp.h Mayaqua/openssl/opensslconf.h Mayaqua/openssl/opensslv.h Mayaqua/openssl/ossl_typ.h Mayaqua/openssl/pem.h Mayaqua/openssl/pem2.h Mayaqua/openssl/pkcs12.h Mayaqua/openssl/pkcs7.h Mayaqua/openssl/pqueue.h Mayaqua/openssl/rand.h Mayaqua/openssl/rc2.h Mayaqua/openssl/rc4.h Mayaqua/openssl/ripemd.h Mayaqua/openssl/rsa.h Mayaqua/openssl/safestack.h Mayaqua/openssl/sha.h Mayaqua/openssl/ssl.h Mayaqua/openssl/ssl2.h Mayaqua/openssl/ssl23.h Mayaqua/openssl/ssl3.h Mayaqua/openssl/stack.h Mayaqua/openssl/symhacks.h Mayaqua/openssl/tls1.h Mayaqua/openssl/txt_db.h Mayaqua/openssl/ui.h Mayaqua/openssl/ui_compat.h Mayaqua/openssl/x509.h Mayaqua/openssl/x509_vfy.h Mayaqua/openssl/x509v3.h Mayaqua/OS.h Mayaqua/Pack.h Mayaqua/pkcs11.h Mayaqua/pkcs11f.h Mayaqua/pkcs11t.h Mayaqua/Secure.h Mayaqua/Str.h Mayaqua/Table.h Mayaqua/TcpIp.h Mayaqua/Tick64.h Mayaqua/Tracking.h Mayaqua/TunTap.h Mayaqua/Unix.h Mayaqua/Win32.h Mayaqua/zlib/zconf.h Mayaqua/zlib/zlib.h -HEADERS_CEDAR=Cedar/Account.h Cedar/Admin.h Cedar/AzureClient.h Cedar/AzureServer.h Cedar/Bridge.h Cedar/BridgeUnix.h Cedar/BridgeWin32.h Cedar/Cedar.h Cedar/CedarPch.h Cedar/CedarType.h Cedar/Client.h Cedar/CM.h Cedar/CMInner.h Cedar/Command.h Cedar/Connection.h Cedar/Console.h Cedar/Database.h Cedar/DDNS.h Cedar/EM.h Cedar/EMInner.h Cedar/EtherLog.h Cedar/Hub.h Cedar/Interop_OpenVPN.h Cedar/Interop_SSTP.h Cedar/IPsec.h Cedar/IPsec_EtherIP.h Cedar/IPsec_IKE.h Cedar/IPsec_IkePacket.h Cedar/IPsec_IPC.h Cedar/IPsec_L2TP.h Cedar/IPsec_PPP.h Cedar/IPsec_Win7.h Cedar/IPsec_Win7Inner.h Cedar/Layer3.h Cedar/Link.h Cedar/Listener.h Cedar/Logging.h Cedar/Nat.h Cedar/NativeStack.h Cedar/NM.h Cedar/NMInner.h Cedar/NullLan.h Cedar/Protocol.h Cedar/Radius.h Cedar/Remote.h Cedar/Sam.h Cedar/SecureInfo.h Cedar/SecureNAT.h Cedar/SeLowUser.h Cedar/Server.h Cedar/Session.h Cedar/SM.h Cedar/SMInner.h Cedar/SW.h Cedar/SWInner.h Cedar/UdpAccel.h Cedar/UT.h Cedar/VG.h Cedar/Virtual.h Cedar/VLan.h Cedar/VLanUnix.h Cedar/VLanWin32.h Cedar/WaterMark.h Cedar/WebUI.h Cedar/Win32Com.h Cedar/WinUi.h Cedar/Wpc.h -OBJECTS_MAYAQUA=object/Mayaqua/Cfg.o object/Mayaqua/Encrypt.o object/Mayaqua/FileIO.o object/Mayaqua/Internat.o object/Mayaqua/Kernel.o object/Mayaqua/Mayaqua.o object/Mayaqua/Memory.o object/Mayaqua/Microsoft.o object/Mayaqua/Network.o object/Mayaqua/Object.o object/Mayaqua/OS.o object/Mayaqua/Pack.o object/Mayaqua/Secure.o object/Mayaqua/Str.o object/Mayaqua/Table.o object/Mayaqua/TcpIp.o object/Mayaqua/Tick64.o object/Mayaqua/Tracking.o object/Mayaqua/Unix.o object/Mayaqua/Win32.o -OBJECTS_CEDAR=object/Cedar/Account.o object/Cedar/Admin.o object/Cedar/AzureClient.o object/Cedar/AzureServer.o object/Cedar/Bridge.o object/Cedar/BridgeUnix.o object/Cedar/BridgeWin32.o object/Cedar/Cedar.o object/Cedar/CedarPch.o object/Cedar/Client.o object/Cedar/CM.o object/Cedar/Command.o object/Cedar/Connection.o object/Cedar/Console.o object/Cedar/Database.o object/Cedar/DDNS.o object/Cedar/EM.o object/Cedar/EtherLog.o object/Cedar/Hub.o object/Cedar/Interop_OpenVPN.o object/Cedar/Interop_SSTP.o object/Cedar/IPsec.o object/Cedar/IPsec_EtherIP.o object/Cedar/IPsec_IKE.o object/Cedar/IPsec_IkePacket.o object/Cedar/IPsec_IPC.o object/Cedar/IPsec_L2TP.o object/Cedar/IPsec_PPP.o object/Cedar/IPsec_Win7.o object/Cedar/Layer3.o object/Cedar/Link.o object/Cedar/Listener.o object/Cedar/Logging.o object/Cedar/Nat.o object/Cedar/NativeStack.o object/Cedar/NM.o object/Cedar/NullLan.o object/Cedar/Protocol.o object/Cedar/Radius.o object/Cedar/Remote.o object/Cedar/Sam.o object/Cedar/SecureInfo.o object/Cedar/SecureNAT.o object/Cedar/SeLowUser.o object/Cedar/Server.o object/Cedar/Session.o object/Cedar/SM.o object/Cedar/SW.o object/Cedar/UdpAccel.o object/Cedar/UT.o object/Cedar/VG.o object/Cedar/Virtual.o object/Cedar/VLan.o object/Cedar/VLanUnix.o object/Cedar/VLanWin32.o object/Cedar/WaterMark.o object/Cedar/WebUI.o object/Cedar/WinUi.o object/Cedar/Wpc.o - -# Build Action -default: build - -build: $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) bin/ham bin/vpnserver bin/vpnbridge bin/vpnclient bin/vpncmd - -# Mayaqua Kernel Code -object/Mayaqua/Cfg.o: Mayaqua/Cfg.c $(HEADERS_MAYAQUA) - @mkdir -p object/ - @mkdir -p object/Mayaqua/ - @mkdir -p object/Cedar/ - @mkdir -p code/ - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Cfg.c -o object/Mayaqua/Cfg.o - -object/Mayaqua/Encrypt.o: Mayaqua/Encrypt.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Encrypt.c -o object/Mayaqua/Encrypt.o - -object/Mayaqua/FileIO.o: Mayaqua/FileIO.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/FileIO.c -o object/Mayaqua/FileIO.o - -object/Mayaqua/Internat.o: Mayaqua/Internat.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Internat.c -o object/Mayaqua/Internat.o - -object/Mayaqua/Kernel.o: Mayaqua/Kernel.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Kernel.c -o object/Mayaqua/Kernel.o - -object/Mayaqua/Mayaqua.o: Mayaqua/Mayaqua.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Mayaqua.c -o object/Mayaqua/Mayaqua.o - -object/Mayaqua/Memory.o: Mayaqua/Memory.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Memory.c -o object/Mayaqua/Memory.o - -object/Mayaqua/Microsoft.o: Mayaqua/Microsoft.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Microsoft.c -o object/Mayaqua/Microsoft.o - -object/Mayaqua/Network.o: Mayaqua/Network.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Network.c -o object/Mayaqua/Network.o - -object/Mayaqua/Object.o: Mayaqua/Object.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Object.c -o object/Mayaqua/Object.o - -object/Mayaqua/OS.o: Mayaqua/OS.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/OS.c -o object/Mayaqua/OS.o - -object/Mayaqua/Pack.o: Mayaqua/Pack.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Pack.c -o object/Mayaqua/Pack.o - -object/Mayaqua/Secure.o: Mayaqua/Secure.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Secure.c -o object/Mayaqua/Secure.o - -object/Mayaqua/Str.o: Mayaqua/Str.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Str.c -o object/Mayaqua/Str.o - -object/Mayaqua/Table.o: Mayaqua/Table.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Table.c -o object/Mayaqua/Table.o - -object/Mayaqua/TcpIp.o: Mayaqua/TcpIp.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/TcpIp.c -o object/Mayaqua/TcpIp.o - -object/Mayaqua/Tick64.o: Mayaqua/Tick64.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Tick64.c -o object/Mayaqua/Tick64.o - -object/Mayaqua/Tracking.o: Mayaqua/Tracking.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Tracking.c -o object/Mayaqua/Tracking.o - -object/Mayaqua/Unix.o: Mayaqua/Unix.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Unix.c -o object/Mayaqua/Unix.o - -object/Mayaqua/Win32.o: Mayaqua/Win32.c $(HEADERS_MAYAQUA) - $(CC) $(OPTIONS_COMPILE) -c Mayaqua/Win32.c -o object/Mayaqua/Win32.o - -# Cedar Communication Module Code -object/Cedar/Account.o: Cedar/Account.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Account.c -o object/Cedar/Account.o - -object/Cedar/Admin.o: Cedar/Admin.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Admin.c -o object/Cedar/Admin.o - -object/Cedar/AzureClient.o: Cedar/AzureClient.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/AzureClient.c -o object/Cedar/AzureClient.o - -object/Cedar/AzureServer.o: Cedar/AzureServer.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/AzureServer.c -o object/Cedar/AzureServer.o - -object/Cedar/Bridge.o: Cedar/Bridge.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) Cedar/BridgeUnix.c - $(CC) $(OPTIONS_COMPILE) -c Cedar/Bridge.c -o object/Cedar/Bridge.o - -object/Cedar/BridgeUnix.o: Cedar/BridgeUnix.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/BridgeUnix.c -o object/Cedar/BridgeUnix.o - -object/Cedar/BridgeWin32.o: Cedar/BridgeWin32.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/BridgeWin32.c -o object/Cedar/BridgeWin32.o - -object/Cedar/Cedar.o: Cedar/Cedar.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Cedar.c -o object/Cedar/Cedar.o - -object/Cedar/CedarPch.o: Cedar/CedarPch.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/CedarPch.c -o object/Cedar/CedarPch.o - -object/Cedar/Client.o: Cedar/Client.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Client.c -o object/Cedar/Client.o - -object/Cedar/CM.o: Cedar/CM.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/CM.c -o object/Cedar/CM.o - -object/Cedar/Command.o: Cedar/Command.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Command.c -o object/Cedar/Command.o - -object/Cedar/Connection.o: Cedar/Connection.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Connection.c -o object/Cedar/Connection.o - -object/Cedar/Console.o: Cedar/Console.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Console.c -o object/Cedar/Console.o - -object/Cedar/Database.o: Cedar/Database.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Database.c -o object/Cedar/Database.o - -object/Cedar/DDNS.o: Cedar/DDNS.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/DDNS.c -o object/Cedar/DDNS.o - -object/Cedar/EM.o: Cedar/EM.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/EM.c -o object/Cedar/EM.o - -object/Cedar/EtherLog.o: Cedar/EtherLog.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/EtherLog.c -o object/Cedar/EtherLog.o - -object/Cedar/Hub.o: Cedar/Hub.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Hub.c -o object/Cedar/Hub.o - -object/Cedar/Interop_OpenVPN.o: Cedar/Interop_OpenVPN.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Interop_OpenVPN.c -o object/Cedar/Interop_OpenVPN.o - -object/Cedar/Interop_SSTP.o: Cedar/Interop_SSTP.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Interop_SSTP.c -o object/Cedar/Interop_SSTP.o - -object/Cedar/IPsec.o: Cedar/IPsec.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec.c -o object/Cedar/IPsec.o - -object/Cedar/IPsec_EtherIP.o: Cedar/IPsec_EtherIP.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_EtherIP.c -o object/Cedar/IPsec_EtherIP.o - -object/Cedar/IPsec_IKE.o: Cedar/IPsec_IKE.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_IKE.c -o object/Cedar/IPsec_IKE.o - -object/Cedar/IPsec_IkePacket.o: Cedar/IPsec_IkePacket.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_IkePacket.c -o object/Cedar/IPsec_IkePacket.o - -object/Cedar/IPsec_IPC.o: Cedar/IPsec_IPC.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_IPC.c -o object/Cedar/IPsec_IPC.o - -object/Cedar/IPsec_L2TP.o: Cedar/IPsec_L2TP.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_L2TP.c -o object/Cedar/IPsec_L2TP.o - -object/Cedar/IPsec_PPP.o: Cedar/IPsec_PPP.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_PPP.c -o object/Cedar/IPsec_PPP.o - -object/Cedar/IPsec_Win7.o: Cedar/IPsec_Win7.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/IPsec_Win7.c -o object/Cedar/IPsec_Win7.o - -object/Cedar/Layer3.o: Cedar/Layer3.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Layer3.c -o object/Cedar/Layer3.o - -object/Cedar/Link.o: Cedar/Link.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Link.c -o object/Cedar/Link.o - -object/Cedar/Listener.o: Cedar/Listener.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Listener.c -o object/Cedar/Listener.o - -object/Cedar/Logging.o: Cedar/Logging.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Logging.c -o object/Cedar/Logging.o - -object/Cedar/Nat.o: Cedar/Nat.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Nat.c -o object/Cedar/Nat.o - -object/Cedar/NativeStack.o: Cedar/NativeStack.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/NativeStack.c -o object/Cedar/NativeStack.o - -object/Cedar/NM.o: Cedar/NM.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/NM.c -o object/Cedar/NM.o - -object/Cedar/NullLan.o: Cedar/NullLan.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/NullLan.c -o object/Cedar/NullLan.o - -object/Cedar/Protocol.o: Cedar/Protocol.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Protocol.c -o object/Cedar/Protocol.o - -object/Cedar/Radius.o: Cedar/Radius.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Radius.c -o object/Cedar/Radius.o - -object/Cedar/Remote.o: Cedar/Remote.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Remote.c -o object/Cedar/Remote.o - -object/Cedar/Sam.o: Cedar/Sam.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Sam.c -o object/Cedar/Sam.o - -object/Cedar/SecureInfo.o: Cedar/SecureInfo.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/SecureInfo.c -o object/Cedar/SecureInfo.o - -object/Cedar/SecureNAT.o: Cedar/SecureNAT.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/SecureNAT.c -o object/Cedar/SecureNAT.o - -object/Cedar/SeLowUser.o: Cedar/SeLowUser.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/SeLowUser.c -o object/Cedar/SeLowUser.o - -object/Cedar/Server.o: Cedar/Server.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Server.c -o object/Cedar/Server.o - -object/Cedar/Session.o: Cedar/Session.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Session.c -o object/Cedar/Session.o - -object/Cedar/SM.o: Cedar/SM.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/SM.c -o object/Cedar/SM.o - -object/Cedar/SW.o: Cedar/SW.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/SW.c -o object/Cedar/SW.o - -object/Cedar/UdpAccel.o: Cedar/UdpAccel.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/UdpAccel.c -o object/Cedar/UdpAccel.o - -object/Cedar/UT.o: Cedar/UT.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/UT.c -o object/Cedar/UT.o - -object/Cedar/VG.o: Cedar/VG.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/VG.c -o object/Cedar/VG.o - -object/Cedar/Virtual.o: Cedar/Virtual.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Virtual.c -o object/Cedar/Virtual.o - -object/Cedar/VLan.o: Cedar/VLan.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/VLan.c -o object/Cedar/VLan.o - -object/Cedar/VLanUnix.o: Cedar/VLanUnix.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/VLanUnix.c -o object/Cedar/VLanUnix.o - -object/Cedar/VLanWin32.o: Cedar/VLanWin32.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/VLanWin32.c -o object/Cedar/VLanWin32.o - -object/Cedar/WaterMark.o: Cedar/WaterMark.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/WaterMark.c -o object/Cedar/WaterMark.o - -object/Cedar/WebUI.o: Cedar/WebUI.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/WebUI.c -o object/Cedar/WebUI.o - -object/Cedar/WinUi.o: Cedar/WinUi.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/WinUi.c -o object/Cedar/WinUi.o - -object/Cedar/Wpc.o: Cedar/Wpc.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Cedar/Wpc.c -o object/Cedar/Wpc.o - -# Ham -bin/ham: code/Ham.a $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) code/Ham.a $(OPTIONS_LINK) -o bin/ham - -code/Ham.a: object/Ham.o $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - rm -f code/Ham.a - ar r code/Ham.a $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) object/Ham.o - ranlib code/Ham.a - -object/Ham.o: Ham/Ham.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c Ham/Ham.c -o object/Ham.o - -# vpnserver -bin/vpnserver: code/vpnserver.a $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) code/vpnserver.a $(OPTIONS_LINK) -o bin/vpnserver - -code/vpnserver.a: object/vpnserver.o $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - rm -f code/vpnserver.a - ar r code/vpnserver.a $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) object/vpnserver.o - ranlib code/vpnserver.a - -object/vpnserver.o: vpnserver/vpnserver.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c vpnserver/vpnserver.c -o object/vpnserver.o - -# vpnbridge -bin/vpnbridge: code/vpnbridge.a $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) code/vpnbridge.a $(OPTIONS_LINK) -o bin/vpnbridge - -code/vpnbridge.a: object/vpnbridge.o $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - rm -f code/vpnbridge.a - ar r code/vpnbridge.a $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) object/vpnbridge.o - ranlib code/vpnbridge.a - -object/vpnbridge.o: vpnbridge/vpnbridge.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c vpnbridge/vpnbridge.c -o object/vpnbridge.o - -# vpnclient -bin/vpnclient: code/vpnclient.a $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) code/vpnclient.a $(OPTIONS_LINK) -o bin/vpnclient - -code/vpnclient.a: object/vpnclient.o $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - rm -f code/vpnclient.a - ar r code/vpnclient.a $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) object/vpnclient.o - ranlib code/vpnclient.a - -object/vpnclient.o: vpnclient/vpncsvc.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c vpnclient/vpncsvc.c -o object/vpnclient.o - -# vpncmd -bin/vpncmd: code/vpncmd.a $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) code/vpncmd.a $(OPTIONS_LINK) -o bin/vpncmd - -code/vpncmd.a: object/vpncmd.o $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - rm -f code/vpncmd.a - ar r code/vpncmd.a $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) object/vpncmd.o - ranlib code/vpncmd.a - -object/vpncmd.o: vpncmd/vpncmd.c $(HEADERS_MAYAQUA) $(HEADERS_CEDAR) $(OBJECTS_MAYAQUA) $(OBJECTS_CEDAR) - $(CC) $(OPTIONS_COMPILE) -c vpncmd/vpncmd.c -o object/vpncmd.o - -# Clean -clean: - -rm -f $(OBJECTS_MAYAQUA) - -rm -f $(OBJECTS_CEDAR) - -rm -f object/Ham.o - -rm -f code/Ham.a - -rm -f bin/ham - -rm -f object/vpnserver.o - -rm -f code/vpnserver.a - -rm -f bin/vpnserver - -rm -f object/vpnbridge.o - -rm -f code/vpnbridge.a - -rm -f bin/vpnbridge - -rm -f object/vpnclient.o - -rm -f code/vpnclient.a - -rm -f bin/vpnclient - -rm -f object/vpncmd.o - -rm -f code/vpncmd.a - -rm -f bin/vpncmd - -# Help Strings -help: - @echo "make [DEBUG=YES]" - diff --git a/src/Neo/Neo.vcproj b/src/Neo/Neo.vcproj index eea59b3b..7996a607 100644 --- a/src/Neo/Neo.vcproj +++ b/src/Neo/Neo.vcproj @@ -77,7 +77,7 @@ diff --git a/src/SeLow/SeLow.vcproj b/src/SeLow/SeLow.vcproj index 7d916054..ad8d53b9 100644 --- a/src/SeLow/SeLow.vcproj +++ b/src/SeLow/SeLow.vcproj @@ -78,9 +78,9 @@ Name="VCLinkerTool" IgnoreImportLibrary="true" LinkLibraryDependencies="false" - AdditionalOptions="/driver /subsystem:native,5.00 /FULLBUILD /align:0x80 /osversion:5.00 /STACK:0x40000,0x1000 /MERGE:_PAGE=PAGE /MERGE:_TEXT=.text /NODEFAULTLIB /stub:C:\WINDDK\7600.16385.0\lib\win7\stub512.com" + AdditionalOptions="/driver /subsystem:native,5.00 /FULLBUILD /align:0x80 /osversion:5.00 /STACK:0x40000,0x1000 /MERGE:_PAGE=PAGE /MERGE:_TEXT=.text /NODEFAULTLIB /stub:C:\WINDDK\7600.16385.0\lib\win7\stub512.com /ALIGN:4096" AdditionalDependencies="bufferoverflowK.lib wdm.lib ndis.lib wdmsec.lib ntoskrnl.lib fwpkclnt.lib "$(SolutionDir)tmp\VersionResources\$(ProjectName)_$(PlatformName).res"" - OutputFile="$(OutDir)\SeLow_x86.sys" + OutputFile="$(OutDir)\SeLow_x86_unsigned.sys" LinkIncremental="1" AdditionalLibraryDirectories="C:\WINDDK\7600.16385.0\lib\win7\i386" GenerateManifest="false" @@ -121,7 +121,7 @@ /> diff --git a/src/See/See.vcproj b/src/See/See.vcproj index 68557eca..ff83992c 100644 --- a/src/See/See.vcproj +++ b/src/See/See.vcproj @@ -75,7 +75,7 @@ /> = 2) || (os_ver1 >= 7)) + { + g_is_win8 = true; + g_pool_type = 512; + } + wfp = ZeroMalloc(sizeof(WFP_CTX)); RtlInitUnicodeString(&wfp->DeviceName, WFP_DEVICE_NAME); @@ -1049,7 +1063,7 @@ void *Malloc(UINT size) { void *p; - p = ExAllocatePoolWithTag(NonPagedPool, size + sizeof(UINT), MEMPOOL_TAG); + p = ExAllocatePoolWithTag(g_pool_type, size + sizeof(UINT), MEMPOOL_TAG); *((UINT *)p) = size; return ((UCHAR *)p) + sizeof(UINT); diff --git a/src/Wfp/Wfp.vcproj b/src/Wfp/Wfp.vcproj index bfed7655..ac6128c5 100644 --- a/src/Wfp/Wfp.vcproj +++ b/src/Wfp/Wfp.vcproj @@ -78,9 +78,9 @@ diff --git a/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.inf b/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.inf index 15c38d73..d87efaa1 100644 --- a/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.inf +++ b/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 ;CatalogFile.NT = $CATALOG_FILENAME$ [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.134 +; Auto Generated 20150910_193640.387 diff --git a/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.sys b/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.sys index 6f56728b..b9f5d5c5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.sys and b/src/bin/hamcore/DriverPackages/Neo/x64/Neo_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.inf b/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.inf index 8e373e47..9ae8b2f0 100644 --- a/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.inf +++ b/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 ;CatalogFile.NT = $CATALOG_FILENAME$ [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.131 +; Auto Generated 20150910_193640.383 diff --git a/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.sys b/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.sys index e64f55b5..5ed3ddb3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.sys and b/src/bin/hamcore/DriverPackages/Neo/x86/Neo_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.inf b/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.inf index b5c0d0ce..4a974dd6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.inf +++ b/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 ;CatalogFile.NT = $CATALOG_FILENAME$ [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.140 +; Auto Generated 20150910_193640.393 diff --git a/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.sys b/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.sys index a25c9044..1d9753bb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.sys and b/src/bin/hamcore/DriverPackages/Neo6/x64/Neo6_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.inf b/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.inf index d76f117f..0658823d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.inf +++ b/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 ;CatalogFile.NT = $CATALOG_FILENAME$ [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.137 +; Auto Generated 20150910_193640.390 diff --git a/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.sys b/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.sys index fc63edce..3789e6e8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.sys and b/src/bin/hamcore/DriverPackages/Neo6/x86/Neo6_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.cat index f74e8622..42525f62 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.inf index f7d48791..86ce1009 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.313 +; Auto Generated 20150910_193658.928 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.sys index 007a3bce..8d04cef8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.cat index a9b43ab3..d0575dd5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.inf index cbde02a6..ea345a27 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN10.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.178 +; Auto Generated 20150910_193659.933 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.sys index d7326121..035747fa 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN10.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.cat index 99908353..063577fa 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.inf index 4a29b182..22be449d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN100.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.795 +; Auto Generated 20150910_193709.982 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.sys index 1176eef7..6cddfb8c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN100.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.cat index 7658c203..4a68e441 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.inf index 2b44876a..78e05206 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN101.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.890 +; Auto Generated 20150910_193710.086 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.sys index f079611b..582189af 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN101.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.cat index 08160af9..1a1d581a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.inf index 8b6a57d8..b2a5f20b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN102.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.985 +; Auto Generated 20150910_193710.189 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.sys index 41e46010..a34add39 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN102.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.cat index 49e2931b..06cbdce6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.inf index a0ed4ebc..edeaee87 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN103.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.079 +; Auto Generated 20150910_193710.292 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.sys index 2fac045f..a9a2bf7f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN103.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.cat index 14d755b1..4489d3fc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.inf index 53d85448..cf126cc3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN104.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.174 +; Auto Generated 20150910_193710.395 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.sys index f306859e..7a5b431e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN104.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.cat index 2ae69346..b4f7c1fb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.inf index b2afe04e..e8f974da 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN105.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.269 +; Auto Generated 20150910_193710.534 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.sys index ecf7b3d7..a01c1094 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN105.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.cat index 6f10982a..4dda19df 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.inf index f46098fb..6bc98f49 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN106.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.364 +; Auto Generated 20150910_193710.656 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.sys index 62f62bfc..7a387264 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN106.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.cat index 3039abbe..6a9468e9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.inf index 24624b57..d0e6b652 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN107.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.459 +; Auto Generated 20150910_193710.977 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.sys index 16bdfa74..3d03eafa 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN107.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.cat index a31a3b4c..10f21c96 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.inf index eaf1c9ed..34bd77ab 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN108.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.556 +; Auto Generated 20150910_193711.080 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.sys index 09000682..700ff989 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN108.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.cat index 5d0c98f1..d1b0a070 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.inf index fe10f644..6f659a2e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN109.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.652 +; Auto Generated 20150910_193711.184 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.sys index 4bfc82ef..6afe5c3f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN109.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.cat index 32ea3685..0754db45 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.inf index 59ebff76..9bc9947a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN11.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.274 +; Auto Generated 20150910_193700.037 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.sys index f8a381cd..6cae3916 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN11.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.cat index 6219a186..64ed344b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.inf index a477adf2..995161a0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN110.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.747 +; Auto Generated 20150910_193711.290 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.sys index 92d1b73f..04c274dd 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN110.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.cat index baa1fdc6..a2f950b0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.inf index 9ff47e5d..043d40a4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN111.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.843 +; Auto Generated 20150910_193711.394 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.sys index 155844da..30b64c13 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN111.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.cat index a75bbafa..af19dd1b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.inf index 0773da12..84a14b58 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN112.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023445.938 +; Auto Generated 20150910_193711.497 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.sys index 51115ac4..9b537abb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN112.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.cat index bc3e5343..92244855 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.inf index 146904df..022d2227 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN113.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.034 +; Auto Generated 20150910_193711.620 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.sys index fc18f737..44b497e2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN113.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.cat index 71d95a20..0a159d0a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.inf index 7731099c..d78bb322 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN114.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.129 +; Auto Generated 20150910_193711.742 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.sys index 228b7413..58352073 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN114.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.cat index eed0dafc..35b35f40 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.inf index 96d665e5..1a821c28 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN115.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.223 +; Auto Generated 20150910_193711.900 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.sys index 0bbc6bd3..cc0ad328 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN115.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.cat index 61adb73e..859229af 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.inf index ede71f04..a9122733 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN116.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.318 +; Auto Generated 20150910_193712.004 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.sys index 72190209..8e0a415e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN116.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.cat index 3e2cafe1..a9b6123b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.inf index f17dd7be..9e3d8528 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN117.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.411 +; Auto Generated 20150910_193712.107 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.sys index 655ce134..da18f4e2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN117.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.cat index 2c8b8b33..536fe69b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.inf index 45e43066..65f8b2fa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN118.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.505 +; Auto Generated 20150910_193712.209 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.sys index 99a45207..a3c8b4d5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN118.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.cat index 2378a9c6..ff53d8a9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.inf index cbe31dd4..f12fec8a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN119.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.601 +; Auto Generated 20150910_193712.314 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.sys index 34746ecb..55489a3a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN119.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.cat index 36aa17b1..0ae6a6c4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.inf index 19864ed3..d0d4f09e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN12.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.369 +; Auto Generated 20150910_193700.140 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.sys index d1594e6b..59f7e6f9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN12.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.cat index 5000e8d9..1424567d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.inf index 09118729..75f21ce0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN120.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.696 +; Auto Generated 20150910_193712.418 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.sys index 7c5a9c27..6c2e85dd 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN120.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.cat index 0fc2e358..d20d5f6f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.inf index 54f6f5a3..20c7e62a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN121.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.790 +; Auto Generated 20150910_193712.560 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.sys index d7514984..19f26324 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN121.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.cat index b12055da..997d3c36 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.inf index 1e45e851..38c1b4c5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN122.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.885 +; Auto Generated 20150910_193712.664 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.sys index dade0a30..6891c509 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN122.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.cat index c99809ae..21116192 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.inf index 0e09247d..af4d2bf3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN123.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023446.980 +; Auto Generated 20150910_193712.768 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.sys index 0e3b535c..46f7800b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN123.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.cat index 3baf7a93..fe611380 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.inf index f411f9f2..5d0ec3db 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN124.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023447.076 +; Auto Generated 20150910_193712.872 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.sys index 367435b3..654a856f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN124.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.cat index 60514da5..fd7a9bb2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.inf index 09c7eae4..0a4b2b61 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN125.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023447.174 +; Auto Generated 20150910_193712.976 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.sys index 6f838687..7e4382e0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN125.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.cat index eb59ba45..3a0951e6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.inf index 6345bf14..e2799b06 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN126.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023447.269 +; Auto Generated 20150910_193713.080 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.sys index ca014c43..1afaa643 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN126.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.cat index 19415fde..9fa0786d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.inf index 7bb41146..08851973 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN127.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023447.364 +; Auto Generated 20150910_193713.184 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.sys index 4642c58f..27733c61 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN127.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.cat index 1e71c244..81b5b46b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.inf index d7f170c3..3587bdc1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN13.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.464 +; Auto Generated 20150910_193700.293 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.sys index 236da077..db3702d1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN13.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.cat index 5bc7f378..06be34fd 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.inf index d13e7f11..edec5234 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN14.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.560 +; Auto Generated 20150910_193700.418 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.sys index 21c2b0d5..37ae508a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN14.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.cat index 85dc2955..c3b85534 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.inf index f2e3defc..c0b2d1e2 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN15.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.657 +; Auto Generated 20150910_193700.541 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.sys index c4fb2f83..509f23eb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN15.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.cat index d94eba8b..850c2ed6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.inf index 164bcec8..43e4468f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN16.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.753 +; Auto Generated 20150910_193700.644 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.sys index 9d464506..46c937ca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN16.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.cat index ae4f1478..6b22652c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.inf index 7835d630..94ac931b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN17.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.851 +; Auto Generated 20150910_193700.748 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.sys index 8ba867e7..773a427b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN17.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.cat index 3dca7fe3..8e4082ec 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.inf index df180b4e..91f8bd07 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN18.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.946 +; Auto Generated 20150910_193700.852 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.sys index ce9c6a45..3016849c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN18.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.cat index be77c1d9..ed6e644f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.inf index cc1cf115..475c8e0b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN19.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.040 +; Auto Generated 20150910_193700.957 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.sys index 84e32970..490e0ae3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN19.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.cat index 99cc7031..9d1b5b1a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.inf index a7310493..1de5e97e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN2.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.408 +; Auto Generated 20150910_193659.033 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.sys index 9c369b2f..35458233 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN2.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.cat index 52c49aa3..fd790990 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.inf index 97f508d2..a993ddab 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN20.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.138 +; Auto Generated 20150910_193701.061 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.sys index 65da5137..4cdb66f5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN20.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.cat index 0c76d350..6bb5a6de 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.inf index b52e4a93..1d45367b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN21.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.246 +; Auto Generated 20150910_193701.165 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.sys index 012cfc35..2eb8e8bc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN21.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.cat index d91ab645..cf7556fc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.inf index 83dfcb25..9a561a9d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN22.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.342 +; Auto Generated 20150910_193701.302 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.sys index df81cd45..374499ae 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN22.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.cat index 0aad9f2d..3fbc9103 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.inf index 3e78478f..621ab76e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN23.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.438 +; Auto Generated 20150910_193701.406 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.sys index 32ea728b..ddd04837 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN23.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.cat index 4a7fcc71..b2c6d077 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.inf index cdf080d3..99329983 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN24.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.533 +; Auto Generated 20150910_193701.509 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.sys index 95710acb..fe84772b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN24.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.cat index 892866b3..2358bf69 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.inf index 1c068ad6..dbef49de 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN25.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.629 +; Auto Generated 20150910_193701.620 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.sys index 042d52ab..a1b50c56 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN25.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.cat index 54bae6f7..a804de53 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.inf index c1d30a30..77dd8ef9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN26.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.726 +; Auto Generated 20150910_193701.729 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.sys index 04975e2c..cc4e5ccc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN26.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.cat index 05fb6a1d..fc2520ca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.inf index 0db55b0a..a2492548 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN27.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.821 +; Auto Generated 20150910_193701.834 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.sys index 549231df..22faabc1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN27.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.cat index 298068d5..7ea82a7d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.inf index e041e856..68836518 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN28.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023437.917 +; Auto Generated 20150910_193701.941 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.sys index 092711b9..36153fd7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN28.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.cat index 286cd79b..7c0d41b1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.inf index d9cbee0e..c580a1a6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN29.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.028 +; Auto Generated 20150910_193702.044 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.sys index c4644264..6b02ee2e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN29.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.cat index 641d3b02..2d8d7308 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.inf index 88cacd00..a8488648 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN3.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.505 +; Auto Generated 20150910_193659.136 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.sys index 5ae47bcf..103265af 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN3.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.cat index 7f9e225a..033ec48c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.inf index c2c9e584..a9b4c4bb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN30.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.122 +; Auto Generated 20150910_193702.148 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.sys index 81c8d749..3953a2eb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN30.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.cat index 550efe22..9386b041 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.inf index b5e379a0..99637cb6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN31.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.216 +; Auto Generated 20150910_193702.251 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.sys index aae87c99..91aa38f4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN31.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.cat index 6f80f0d8..9b5e2baf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.inf index 09d38198..05b18754 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN32.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.310 +; Auto Generated 20150910_193702.374 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.sys index e8197670..bc8a59ea 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN32.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.cat index 2d75250c..a88a5359 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.inf index 426ee506..f2299681 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN33.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.405 +; Auto Generated 20150910_193702.495 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.sys index 665ebf75..24effae8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN33.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.cat index 9ecde051..97e56afd 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.inf index d149fdb1..7b1c816b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN34.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.501 +; Auto Generated 20150910_193702.617 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.sys index e4658b9a..791d4e7b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN34.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.cat index f9dadee3..805bf5db 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.inf index 1a2c5422..430a2111 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN35.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.596 +; Auto Generated 20150910_193702.721 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.sys index ff0b37f4..0376eb57 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN35.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.cat index 7790d55e..1327d1ca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.inf index f44f0497..352141d1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN36.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.693 +; Auto Generated 20150910_193702.825 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.sys index d9e9e25c..dd645f2b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN36.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.cat index b147d931..7bee402e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.inf index e8f63cfe..b65a9fef 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN37.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.788 +; Auto Generated 20150910_193702.929 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.sys index 7ea2ff5a..6b500edc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN37.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.cat index 9baac2b5..19ea8a7b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.inf index 17f04a56..a4dd9b8d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN38.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.884 +; Auto Generated 20150910_193703.033 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.sys index cb8692ad..3898d4c7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN38.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.cat index 33a7238b..1e794c7f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.inf index b673ebf9..724d7461 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN39.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023438.978 +; Auto Generated 20150910_193703.139 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.sys index 941b72c0..7dab4e21 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN39.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.cat index 561012f5..f8de149c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.inf index 73bea8b5..be5d4cb4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN4.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.602 +; Auto Generated 20150910_193659.277 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.sys index 919cbb28..c0498f0d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN4.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.cat index cea5282b..f466f2d0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.inf index 28ee21a9..d45dd770 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN40.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.074 +; Auto Generated 20150910_193703.244 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.sys index d0c80db7..ca37c9ce 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN40.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.cat index 0af0755a..f4f5f133 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.inf index e34ee2f9..e864cc9c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN41.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.169 +; Auto Generated 20150910_193703.378 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.sys index effe4224..fc9794d2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN41.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.cat index 4722eddd..ce039c9f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.inf index 03db521f..130c55b5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN42.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.265 +; Auto Generated 20150910_193703.525 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.sys index 8a62c084..1299da77 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN42.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.cat index 10509eba..1bd20039 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.inf index 71295c22..977eeb25 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN43.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.360 +; Auto Generated 20150910_193703.650 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.sys index cb4e76b8..7bf73ae6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN43.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.cat index 4dc9ce36..84d24a09 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.inf index cd797215..1f43c00e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN44.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.454 +; Auto Generated 20150910_193703.754 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.sys index b65031d1..2293ecdd 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN44.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.cat index d4f4324c..945ad756 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.inf index 50938f44..85c8bbca 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN45.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.549 +; Auto Generated 20150910_193703.858 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.sys index 2d02b008..d6fb72a3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN45.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.cat index 183be72a..632c2b75 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.inf index 46a503ec..0a37309d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN46.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.644 +; Auto Generated 20150910_193703.964 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.sys index 139b43c0..8613d123 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN46.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.cat index 31cabc0c..8d8fc06b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.inf index 280422ba..a18dd017 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN47.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.740 +; Auto Generated 20150910_193704.067 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.sys index dcc04071..fbcc2821 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN47.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.cat index d0f6d492..0350de80 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.inf index 9417f879..cb55f637 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN48.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.834 +; Auto Generated 20150910_193704.169 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.sys index 28524357..5337c1fb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN48.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.cat index 7adc4331..92711d50 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.inf index 998a20d7..95b8791c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN49.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023439.928 +; Auto Generated 20150910_193704.274 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.sys index 1948ff05..c56b77e1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN49.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.cat index d7376a02..39b83814 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.inf index 62e803c3..ee60b304 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN5.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.697 +; Auto Generated 20150910_193659.399 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.sys index cddeb5b3..e0f4eebf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN5.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.cat index 1e217b27..e74bd614 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.inf index 618af8bf..a98c81e9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN50.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.022 +; Auto Generated 20150910_193704.410 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.sys index 2d330d51..0edacbab 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN50.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.cat index 68f0de9e..9f602ea1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.inf index fda8627b..af874d0c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN51.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.117 +; Auto Generated 20150910_193704.532 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.sys index 47b38103..5e649ac1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN51.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.cat index 9693b4c5..c392e5ab 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.inf index a2ed81a3..927c506d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN52.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.214 +; Auto Generated 20150910_193704.654 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.sys index 96a95db8..e1c4f5c3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN52.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.cat index 70374d8a..88a2316d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.inf index c330e124..73f24fa6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN53.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.309 +; Auto Generated 20150910_193704.766 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.sys index b65e07b2..951d2902 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN53.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.cat index 0f655f32..3599c72c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.inf index e1ff2d33..53521d99 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN54.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.405 +; Auto Generated 20150910_193704.869 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.sys index 9d4f6b7e..62eb9d6f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN54.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.cat index 5f6c2c63..a3306b22 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.inf index 688fc9c3..a3505ea3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN55.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.500 +; Auto Generated 20150910_193704.974 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.sys index f90ae2aa..a9658ce5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN55.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.cat index c1facf53..2706af4a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.inf index 1957e5e0..08f52338 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN56.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.596 +; Auto Generated 20150910_193705.078 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.sys index 2caad280..f7f46fb8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN56.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.cat index a55393f8..076e4c7a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.inf index 4bd508db..9e0a56f9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN57.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.691 +; Auto Generated 20150910_193705.181 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.sys index 6b5be4cc..6b1cbea3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN57.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.cat index 4f9053fc..33751343 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.inf index 1210a2a0..c6979dd8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN58.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.786 +; Auto Generated 20150910_193705.285 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.sys index 90c67d32..35f73b9e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN58.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.cat index 172908e7..e5136ecb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.inf index 01e0d699..acb56af2 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN59.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.881 +; Auto Generated 20150910_193705.412 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.sys index 19fc3a21..ffd4a712 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN59.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.cat index 343dd1cc..9f08d8b5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.inf index c26da747..90d6b940 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN6.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.792 +; Auto Generated 20150910_193659.520 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.sys index 386bb105..376274a1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN6.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.cat index 9ba70987..8d3feceb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.inf index 18ebd5ad..8efa1bf8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN60.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023440.977 +; Auto Generated 20150910_193705.536 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.sys index 31ae4311..280fda2f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN60.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.cat index 3c525917..887fb412 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.inf index ce599753..031dd6ea 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN61.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.072 +; Auto Generated 20150910_193705.640 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.sys index 76704f3c..16084f6f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN61.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.cat index 82da9646..a72a11c8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.inf index ff579356..52b3a866 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN62.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.168 +; Auto Generated 20150910_193705.744 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.sys index 321526b4..6794dbae 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN62.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.cat index 5bc6be94..4ae9205a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.inf index c8fd54f3..101197d4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN63.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.263 +; Auto Generated 20150910_193705.849 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.sys index f00e45d9..f9e8819b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN63.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.cat index 84dd9fc1..d3426af4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.inf index fd5ffe51..6773ed14 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN64.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.358 +; Auto Generated 20150910_193705.953 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.sys index 03f67581..35f32b28 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.cat index 4382cd38..22055362 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.inf index d24b7cb0..690ae23d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN65.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.453 +; Auto Generated 20150910_193706.056 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.sys index 3e7fac8c..0e21ef2c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN65.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.cat index 2cbd4ddd..c07e0348 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.inf index e7dc1b86..8dffcdaa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN66.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.546 +; Auto Generated 20150910_193706.161 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.sys index c686355a..ba491a1c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN66.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.cat index d0713c34..0eaa2903 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.inf index b6fa97b8..13a6f944 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN67.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.640 +; Auto Generated 20150910_193706.267 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.sys index 8ac158cf..733407f0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN67.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.cat index 0203d4a6..849cd617 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.inf index 4dc055db..6aa06a60 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN68.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.736 +; Auto Generated 20150910_193706.371 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.sys index ed6930ae..0508eeb3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN68.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.cat index 6770013d..3982af30 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.inf index 22715a59..038a281f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN69.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.832 +; Auto Generated 20150910_193706.492 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.sys index 1fbd5703..659b34c1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN69.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.cat index ae923e66..acb7323b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.inf index 398ac6cc..b5904c9c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN7.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.888 +; Auto Generated 20150910_193659.624 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.sys index b913a217..d895e646 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN7.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.cat index d708ca6f..8b7753ad 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.inf index 50646e16..ca712c54 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN70.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023441.928 +; Auto Generated 20150910_193706.615 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.sys index ecc0ccdf..5898958e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN70.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.cat index f035f016..87197a80 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.inf index 1e19362a..ed3079dc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN71.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.024 +; Auto Generated 20150910_193706.724 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.sys index 94ea3bb7..2c9b253e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN71.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.cat index 48e0ea72..2f16384d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.inf index 86c4534e..82853ca7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN72.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.120 +; Auto Generated 20150910_193706.829 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.sys index f381346d..e1e49c25 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN72.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.cat index 8278e9ee..7158a4e0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.inf index 4224ca87..bd137952 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN73.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.216 +; Auto Generated 20150910_193706.932 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.sys index 0dcd3a90..081cdb4b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN73.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.cat index 402a530f..195f2fe0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.inf index ec926236..0be088af 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN74.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.310 +; Auto Generated 20150910_193707.036 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.sys index 67ca9f72..1e6b8337 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN74.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.cat index 580a19df..063d9138 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.inf index 9ebf4f27..ea24d380 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN75.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.403 +; Auto Generated 20150910_193707.140 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.sys index 2dff82c7..83a6e9e1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN75.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.cat index d6885fc4..f4535434 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.inf index 17f7859b..c73dfd8e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN76.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.498 +; Auto Generated 20150910_193707.243 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.sys index a132e7aa..dba15ea8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN76.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.cat index f26b2b65..fd80af0e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.inf index ce1a40a0..b8d9eee4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN77.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.593 +; Auto Generated 20150910_193707.348 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.sys index d98ad72a..ba8dbc80 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN77.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.cat index ba61dbef..f7b15bc4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.inf index df05f685..57a05678 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN78.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.688 +; Auto Generated 20150910_193707.451 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.sys index d49e1e03..334acf94 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN78.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.cat index 6306b6ce..69b6cc94 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.inf index be789c71..e9bae4a0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN79.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.783 +; Auto Generated 20150910_193707.586 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.sys index 9342909e..1b10a718 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN79.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.cat index 8e799ea9..830fd4db 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.inf index c6d2b19a..2e2d9397 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN8.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.985 +; Auto Generated 20150910_193659.727 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.sys index 0bcb391c..cb539c2e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN8.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.cat index b1dac7ff..13415a94 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.inf index ec7309fe..f5941449 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN80.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.876 +; Auto Generated 20150910_193707.709 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.sys index 3b55dbae..28fc36d6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN80.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.cat index fce50c3c..cee9ad6e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.inf index 396ad91f..7e3a49ed 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN81.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023442.971 +; Auto Generated 20150910_193707.813 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.sys index 466fb30b..6c9f07be 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN81.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.cat index c1c298aa..83a04b35 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.inf index c05c9e75..00872c7d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN82.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.078 +; Auto Generated 20150910_193707.917 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.sys index cd863245..66fee38c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN82.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.cat index 46dec648..4a9eea6b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.inf index 0e01bdc5..0680a755 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN83.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.174 +; Auto Generated 20150910_193708.021 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.sys index 6c56b615..38fb6a3b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN83.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.cat index a34b3df7..7854d1c8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.inf index b845481b..d906bbef 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN84.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.271 +; Auto Generated 20150910_193708.125 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.sys index 371226e5..470bd326 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN84.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.cat index 32f351f9..39282380 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.inf index 344a22b6..60ab9612 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN85.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.366 +; Auto Generated 20150910_193708.228 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.sys index 9b4eb131..f54d7ac2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN85.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.cat index 37db28fc..3dbcc2d3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.inf index 18673588..863a2203 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN86.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.460 +; Auto Generated 20150910_193708.333 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.sys index db1ef9fc..c6096322 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.cat index 00cba7f8..9b5571da 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.inf index d9cbe00e..62ca6850 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN87.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.554 +; Auto Generated 20150910_193708.469 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.sys index b3265aab..85213a91 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN87.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.cat index c10c3d67..f9b87235 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.inf index a8d947fd..8d8aaffa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN88.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.650 +; Auto Generated 20150910_193708.619 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.sys index 48f7b32f..d83006cf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN88.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.cat index 5ec1a794..b06ef429 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.inf index 8b097a22..26b7ddbb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN89.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.747 +; Auto Generated 20150910_193708.747 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.sys index 0a565062..9b160632 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN89.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.cat index 9c5a416b..ce622425 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.inf index 4891f0cb..c1fffc9f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN9.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023436.081 +; Auto Generated 20150910_193659.830 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.sys index e253c019..a9581efa 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN9.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.cat index d6057971..440354f0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.inf index 88bacfbe..9e7af745 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN90.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.842 +; Auto Generated 20150910_193708.850 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.sys index afe176ef..5ef4a534 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN90.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.cat index 6c2f5727..bcd1a8ad 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.inf index ff029d93..de502de4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN91.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023443.938 +; Auto Generated 20150910_193708.955 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.sys index 963f17d0..729e60fc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN91.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.cat index 378049f6..7ad4a99c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.inf index d9d0adad..954e966a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN92.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.033 +; Auto Generated 20150910_193709.060 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.sys index 2d8439b4..5a5b1a90 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN92.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.cat index 95daab61..b68767e6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.inf index c47b8039..0f8fbbe5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN93.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.127 +; Auto Generated 20150910_193709.164 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.sys index 64026e28..b4612012 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN93.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.cat index 63de2550..77f7b373 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.inf index 33df1715..da3d93ae 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN94.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.222 +; Auto Generated 20150910_193709.267 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.sys index 7e2f5454..6e65ed85 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN94.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.cat index 24b25dd9..213be0eb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.inf index 94599c27..67fbe5fb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN95.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.317 +; Auto Generated 20150910_193709.371 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.sys index ee168a48..ba7f0d02 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN95.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.cat index 766ef067..85d67154 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.inf index d3ceca4a..f9b9beb5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN96.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.413 +; Auto Generated 20150910_193709.508 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.sys index 1d9b67f5..db66b2f9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN96.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.cat index 9bc90770..0ce202d3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.inf index d5228968..9edb33ca 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN97.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.508 +; Auto Generated 20150910_193709.650 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.sys index e5fd98aa..5c8b95f4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN97.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.cat index d6323887..ed3e6c3d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.inf index f8815741..07d1e7d9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN98.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.603 +; Auto Generated 20150910_193709.775 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.sys index b4dff87c..f588478a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN98.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.cat index cda2372b..f3bc8cbe 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.inf index 00cd077b..4ca65589 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x64_VPN99.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023444.699 +; Auto Generated 20150910_193709.878 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.sys index 6e1d38cc..b8b328bf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x64/Neo6_x64_VPN99.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.cat index a78ff2e1..9319a50f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.inf index 70e06715..9c77fc80 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.027 +; Auto Generated 20150910_193645.100 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.sys index 2b0c9fa9..218dbb4f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.cat index de953bcb..51dfdcca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.inf index af75731e..2016ae89 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN10.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.926 +; Auto Generated 20150910_193646.056 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.sys index c8514a44..cc125089 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN10.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.cat index 72159d82..2d4b9194 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.inf index f8775d6e..22800f47 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN100.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.632 +; Auto Generated 20150910_193655.886 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.sys index db5f03e4..cb83cad7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN100.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.cat index 453ac8b5..da24b09d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.inf index ba761a32..cf3616e0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN101.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.728 +; Auto Generated 20150910_193655.991 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.sys index d1a731da..299fe1b2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN101.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.cat index 2993ce42..3c8b5f64 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.inf index cfbb8be2..6c9d3a5a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN102.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.824 +; Auto Generated 20150910_193656.095 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.sys index 3d193c70..86e412fb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN102.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.cat index 5ccbf2c2..21513439 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.inf index f98795af..366e743d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN103.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.919 +; Auto Generated 20150910_193656.199 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.sys index b4b27767..405b56fe 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN103.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.cat index 9461df75..3b15cf3c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.inf index 627e60e6..617d3d72 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN104.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.014 +; Auto Generated 20150910_193656.304 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.sys index 7fb7f819..4d067942 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN104.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.cat index 814576b4..d6838c18 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.inf index ba02872d..59e0972b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN105.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.109 +; Auto Generated 20150910_193656.410 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.sys index 8bd8f43a..67643b8a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN105.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.cat index a341766f..23fddf76 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.inf index 03e54d4c..20bc8308 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN106.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.205 +; Auto Generated 20150910_193656.519 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.sys index fee82f41..c2840bc1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN106.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.cat index 0f5fa4de..ccd502e5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.inf index 82a09721..56f1da6d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN107.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.301 +; Auto Generated 20150910_193656.640 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.sys index b1938279..83932180 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN107.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.cat index d82d8005..f819a017 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.inf index 570d21b0..107804c7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN108.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.396 +; Auto Generated 20150910_193656.744 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.sys index f1bc7efb..560d75d8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN108.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.cat index 85536ccc..8ce0f8c5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.inf index b0dd99c4..84872c19 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN109.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.491 +; Auto Generated 20150910_193656.849 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.sys index be3b2554..e1357f6c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN109.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.cat index e7eaf502..2450c1bc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.inf index 8a465e3d..e19463c8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN11.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.023 +; Auto Generated 20150910_193646.167 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.sys index db974945..2e89cb6a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN11.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.cat index fe3d49a3..ca80e2cd 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.inf index 416721de..038e862f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN110.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.588 +; Auto Generated 20150910_193656.952 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.sys index ce44f9a4..bd5e6746 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN110.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.cat index a9802445..723a4d85 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.inf index 14255f6c..802880bf 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN111.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.684 +; Auto Generated 20150910_193657.058 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.sys index b6061572..a1a33d0d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN111.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.cat index 089c3f3c..6aafd96d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.inf index 9ff0be2b..4b163438 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN112.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.780 +; Auto Generated 20150910_193657.193 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.sys index 5672a1e3..f2f1bba6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN112.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.cat index 2af7017a..6d83ebe2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.inf index b048715e..91f3cc24 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN113.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.874 +; Auto Generated 20150910_193657.298 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.sys index 992de9a0..c8439950 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN113.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.cat index 8b932aae..28bd7935 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.inf index 7e7a6ea8..124cf715 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN114.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023433.969 +; Auto Generated 20150910_193657.404 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.sys index e515dfce..134b9e88 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN114.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.cat index acf95c33..f16f63c3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.inf index 8318ebe2..f7eaf9ff 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN115.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.065 +; Auto Generated 20150910_193657.509 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.sys index 1c7fc96b..c4701fee 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN115.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.cat index a4c244a7..b148126e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.inf index 7099bbfb..c6744124 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN116.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.162 +; Auto Generated 20150910_193657.615 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.sys index 8077ecb9..1eebf850 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN116.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.cat index 1e060579..0cf432d9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.inf index 66b97a97..de2d611b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN117.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.257 +; Auto Generated 20150910_193657.720 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.sys index a9719dfe..98aeb2ac 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN117.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.cat index ddd25b73..5b2c04b3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.inf index 11879422..0e767e69 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN118.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.352 +; Auto Generated 20150910_193657.825 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.sys index cd1eaa00..f6bd995b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN118.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.cat index cf1a6508..4d1c8b2f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.inf index 6d1cec50..610f0230 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN119.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.448 +; Auto Generated 20150910_193657.930 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.sys index 34611624..7393589d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN119.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.cat index 1daaae6a..336e4b1e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.inf index 3649fb46..2d1b5819 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN12.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.118 +; Auto Generated 20150910_193646.282 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.sys index 40b71d26..1922fd9c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN12.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.cat index f2d4674a..d0fac3ca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.inf index 1dc28474..9265883f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN120.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.544 +; Auto Generated 20150910_193658.035 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.sys index c62c0e9e..d9b96657 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN120.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.cat index 28e6879a..34e30359 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.inf index 25663d67..0ab73c0e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN121.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.642 +; Auto Generated 20150910_193658.140 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.sys index 1c27cb62..c87eea4b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN121.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.cat index 3fbbbeb3..4beda151 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.inf index 8c2d6f91..d96fe188 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN122.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.738 +; Auto Generated 20150910_193658.265 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.sys index 8eb5ba6a..3f8a5add 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN122.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.cat index aa4ad6e6..af4c5580 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.inf index e6534fde..2f79494e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN123.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.834 +; Auto Generated 20150910_193658.387 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.sys index f7134169..f525b7f9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN123.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.cat index 6d77a595..b0bdf8ed 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.inf index 468a9839..0ccb7042 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN124.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023434.930 +; Auto Generated 20150910_193658.509 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.sys index fb518a57..28e9dc9d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN124.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.cat index 34202a06..114477f0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.inf index 8a633ce9..43dd9681 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN125.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.026 +; Auto Generated 20150910_193658.614 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.sys index 2a5f4f4f..d5645dd1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN125.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.cat index 819a67f3..9679bb82 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.inf index 6bc80feb..231da894 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN126.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.122 +; Auto Generated 20150910_193658.719 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.sys index 00d0cae6..1b820180 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN126.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.cat index 11c976fa..44ca2179 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.inf index ea1a0b1c..107d1d48 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN127.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023435.217 +; Auto Generated 20150910_193658.824 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.sys index ee7b1faa..7444a1aa 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN127.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.cat index 71f7b7db..aaa3da9f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.inf index e1b18b2b..be180ae6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN13.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.213 +; Auto Generated 20150910_193646.387 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.sys index c84c8e5f..a501707d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN13.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.cat index 9d026b6b..44baf69e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.inf index 55a57519..6767cb18 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN14.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.310 +; Auto Generated 20150910_193646.492 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.sys index 3f50d612..8d3e90eb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN14.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.cat index b81a80d6..c4542971 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.inf index e7c5ad07..47fb2864 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN15.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.407 +; Auto Generated 20150910_193646.597 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.sys index 6bb6510c..20e8ef3d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN15.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.cat index 61b07e7f..71d4a94b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.inf index e7087130..3564c30b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN16.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.504 +; Auto Generated 20150910_193646.701 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.sys index f6b472a5..e8a519ee 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN16.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.cat index 4ef60527..0924a6e5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.inf index 2a98ccab..f09d3918 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN17.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.600 +; Auto Generated 20150910_193646.808 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.sys index a91d785b..e5da6843 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN17.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.cat index 7e87671a..4b12ef4d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.inf index d87047dc..a4490bfb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN18.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.695 +; Auto Generated 20150910_193646.945 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.sys index 21bdf348..d5370ede 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN18.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.cat index 60e7cccb..9c749f91 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.inf index ae21545c..203dc617 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN19.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.806 +; Auto Generated 20150910_193647.069 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.sys index 15fb7000..af103b62 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN19.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.cat index 08d3e8dd..c47815bb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.inf index 58e0514b..b0be9043 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN2.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.127 +; Auto Generated 20150910_193645.207 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.sys index fe31cbd5..ff5e504c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN2.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.cat index 69738ead..781a69b3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.inf index 470e4a6d..ddbfb875 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN20.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.902 +; Auto Generated 20150910_193647.193 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.sys index 1fea7c75..b67a77c0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN20.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.cat index f696674b..9bf1f9fc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.inf index bd85199d..38315786 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN21.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023424.999 +; Auto Generated 20150910_193647.296 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.sys index 91df011f..b0914046 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN21.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.cat index 7919ead9..babae82a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.inf index a8effd57..d961144f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN22.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.094 +; Auto Generated 20150910_193647.402 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.sys index c710b47a..ed4231e4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN22.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.cat index 4cb27535..fe8bcaca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.inf index 95dfcb47..9b13c2cd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN23.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.190 +; Auto Generated 20150910_193647.507 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.sys index f0caa28c..2a0f574f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN23.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.cat index a27c7d20..2073ba6d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.inf index 545634ba..2aa35dd6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN24.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.287 +; Auto Generated 20150910_193647.613 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.sys index 8facd034..913d9170 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN24.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.cat index 92c89d8d..3b09a9c2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.inf index 2ed24cc3..73afa1d3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN25.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.382 +; Auto Generated 20150910_193647.718 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.sys index eb0368f8..2187a2ac 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN25.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.cat index 4549cbba..ef5d2dca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.inf index 0d72af66..61ac5f17 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN26.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.478 +; Auto Generated 20150910_193647.822 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.sys index 329e2524..9b4c6eab 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN26.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.cat index 8e0febf3..90df1ce1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.inf index 333d91d5..2c25668a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN27.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.575 +; Auto Generated 20150910_193647.959 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.sys index 8fa02cb0..f8a20fd8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN27.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.cat index 8533ca8e..7c358204 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.inf index ab281b94..c6a64ddd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN28.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.672 +; Auto Generated 20150910_193648.084 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.sys index 7cb3ad3e..8184a6ed 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN28.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.cat index 9cf26346..ee80c8f6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.inf index 7fe72049..6a81bbb7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN29.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.769 +; Auto Generated 20150910_193648.208 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.sys index b7d27c61..3b887171 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN29.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.cat index f203ab33..3ebb96a2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.inf index 5e0c9e0b..759b9a9f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN3.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.226 +; Auto Generated 20150910_193645.313 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.sys index 54e485ea..583f80f7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN3.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.cat index e013f55e..64e41cef 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.inf index 7f834b52..b74733f4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN30.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.865 +; Auto Generated 20150910_193648.313 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.sys index c85fd746..7473bea2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN30.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.cat index 51e5712d..41d6e75d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.inf index 497c5c2d..c18af080 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN31.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023425.961 +; Auto Generated 20150910_193648.418 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.sys index 8de15caa..cd6e4ee2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN31.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.cat index 6ae4ba87..e20f9133 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.inf index b432b3fe..40e7f490 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN32.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.057 +; Auto Generated 20150910_193648.524 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.sys index 1ddb74cf..b0ba1017 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN32.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.cat index 5ab3ab6d..12e4ea87 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.inf index 9fb3718e..9c12290d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN33.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.152 +; Auto Generated 20150910_193648.629 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.sys index 03e4eae8..9f207957 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN33.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.cat index 2288346b..898e943f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.inf index c300373b..71b9f740 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN34.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.250 +; Auto Generated 20150910_193648.736 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.sys index 7acec849..34971f5c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN34.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.cat index b978f502..98309eb9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.inf index 93001236..7c1da9a4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN35.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.346 +; Auto Generated 20150910_193648.840 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.sys index 65fd7f7b..0d2c30e2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN35.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.cat index 548d1d18..1826ceb6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.inf index 5c529058..83b741bd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN36.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.442 +; Auto Generated 20150910_193648.984 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.sys index f838e8b9..07da4579 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN36.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.cat index 98dc8269..e7a9c22f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.inf index 4a416b11..d9c9541b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN37.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.539 +; Auto Generated 20150910_193649.108 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.sys index b89d6e16..4f5df6e7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN37.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.cat index 4760b94b..094e3adc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.inf index b5ddec4f..01e98606 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN38.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.635 +; Auto Generated 20150910_193649.213 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.sys index 5c5f598c..ee814dcb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN38.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.cat index ba16273f..807ed56c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.inf index 9f1491c3..e3c567b9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN39.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.730 +; Auto Generated 20150910_193649.317 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.sys index fc9720e6..f8e307ae 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN39.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.cat index eb0ef6bb..22ba07e1 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.inf index 89a3e14f..62be0407 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN4.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.325 +; Auto Generated 20150910_193645.419 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.sys index 0391e178..813c5760 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN4.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.cat index 464eb184..7ac62121 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.inf index a9769a15..45c21727 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN40.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.826 +; Auto Generated 20150910_193649.423 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.sys index b27fdaa1..e330f526 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN40.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.cat index 28fba676..986de963 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.inf index 581aed43..4b9837b8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN41.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023426.923 +; Auto Generated 20150910_193649.531 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.sys index a3601e57..8c3cfac4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN41.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.cat index d7a626c0..6522f860 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.inf index 23122e5e..d187060b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN42.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.020 +; Auto Generated 20150910_193649.636 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.sys index 77fa16c5..7132f222 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN42.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.cat index 6a8550d0..919d8dba 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.inf index 39323a1f..ac30f73e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN43.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.121 +; Auto Generated 20150910_193649.742 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.sys index dbad476e..a48e5094 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN43.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.cat index 1a21f8ae..96510c6e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.inf index 351eeb95..59344f62 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN44.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.219 +; Auto Generated 20150910_193649.847 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.sys index ec805616..21f4bcb2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN44.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.cat index 3b64b8e6..7021566b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.inf index e908dac8..52d33052 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN45.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.315 +; Auto Generated 20150910_193649.952 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.sys index b1815517..84002bac 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN45.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.cat index 88cc5682..b973f268 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.inf index 2eaa4e77..841e7dc7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN46.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.411 +; Auto Generated 20150910_193650.057 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.sys index 618a3d75..1594b6fa 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN46.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.cat index d5625f48..29525a5a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.inf index 233ef665..e5e0c118 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN47.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.507 +; Auto Generated 20150910_193650.162 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.sys index aca5f6a0..d0f68dc3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN47.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.cat index 2861f0f8..1b9e4e53 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.inf index 5ca647b1..2bbc1325 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN48.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.603 +; Auto Generated 20150910_193650.267 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.sys index 6aeab55e..ef85c534 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN48.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.cat index af652572..ba8a8a8c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.inf index 80745d51..0bbd1c4b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN49.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.726 +; Auto Generated 20150910_193650.372 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.sys index 076bbb55..9fad6b27 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN49.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.cat index 70ecac8b..1c0f5438 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.inf index 24bc78d4..6e8e2819 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN5.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.437 +; Auto Generated 20150910_193645.525 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.sys index 4b93f364..5990b23e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN5.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.cat index dada4a12..5942bdfe 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.inf index 1304df6d..6e9e287b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN50.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.822 +; Auto Generated 20150910_193650.477 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.sys index cd8905b3..fda0092c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN50.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.cat index f9898e73..274d9b3e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.inf index 6241f144..a6a69e04 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN51.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023427.918 +; Auto Generated 20150910_193650.626 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.sys index 9d182343..ff11d9a3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN51.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.cat index a0ff4863..db701222 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.inf index be5217a2..3d420bcd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN52.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.014 +; Auto Generated 20150910_193650.750 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.sys index 887bc54e..dc250da9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN52.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.cat index f3fd73e1..500c4eb4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.inf index 9edd8c5d..b5fa8c83 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN53.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.110 +; Auto Generated 20150910_193650.878 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.sys index cd7333da..221d69b0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN53.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.cat index 375b5360..6e6e5eca 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.inf index 1785c21f..ebf08652 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN54.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.206 +; Auto Generated 20150910_193650.984 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.sys index c8aea37c..00a0d23c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN54.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.cat index 8aa2b674..345b9964 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.inf index 82aa96c5..01db6543 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN55.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.301 +; Auto Generated 20150910_193651.090 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.sys index 724d9886..10503386 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN55.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.cat index b6f252b5..d96d3ae5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.inf index 1a9209f5..85816e83 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN56.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.397 +; Auto Generated 20150910_193651.196 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.sys index c67de4dc..196e817f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN56.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.cat index 3a5869d2..d693af3b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.inf index fc46cf1c..a883ee67 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN57.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.492 +; Auto Generated 20150910_193651.307 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.sys index 23415f76..9c232a56 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN57.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.cat index e2c2b5ed..d97eec04 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.inf index f5dfcf7b..ce9b60a7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN58.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.589 +; Auto Generated 20150910_193651.414 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.sys index cee461a9..eeecccc2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN58.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.cat index 502546be..ceded9b4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.inf index fd303b8f..8c96bcfe 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN59.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.684 +; Auto Generated 20150910_193651.519 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.sys index afda69c0..d28ee1e8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN59.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.cat index 79c1bc35..5e9b8ce8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.inf index 43bcad53..56b04757 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN6.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.536 +; Auto Generated 20150910_193645.631 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.sys index a2a16a84..3b747dcf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN6.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.cat index a2983372..b045f9a0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.inf index 0454cc31..b4705805 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN60.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.780 +; Auto Generated 20150910_193651.651 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.sys index 87f905aa..e6eb7e5e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN60.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.cat index 6c5fb70b..a9a007c7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.inf index 72f613aa..45063d17 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN61.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.875 +; Auto Generated 20150910_193651.755 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.sys index ad3e3733..7daf024c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN61.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.cat index 2ab5705b..81bcfb6d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.inf index 06f41753..1b390e60 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN62.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023428.970 +; Auto Generated 20150910_193651.860 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.sys index 79c5cf44..4a25fb45 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN62.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.cat index f9e232fd..b4615234 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.inf index ada04572..7e85ba5f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN63.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.065 +; Auto Generated 20150910_193651.965 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.sys index 50eb4d3b..3ea7e3ac 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN63.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.cat index 663dc2f8..3a3aceac 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.inf index 11a6dd7d..8d38af60 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN64.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.161 +; Auto Generated 20150910_193652.069 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.sys index 2c31e2da..43b0dcc9 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.cat index 80037235..b3364d88 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.inf index 6e6cf6ad..fc380c8c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN65.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.257 +; Auto Generated 20150910_193652.174 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.sys index af8d1648..10240715 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN65.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.cat index 1852b643..1f0a603f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.inf index 76b9b550..8f3a1c2f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN66.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.359 +; Auto Generated 20150910_193652.279 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.sys index 2c3a0a6b..a0b763af 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN66.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.cat index 78dc096a..cedfec39 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.inf index 9646c898..16991971 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN67.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.455 +; Auto Generated 20150910_193652.384 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.sys index 46151bb5..650fa658 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN67.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.cat index 9c5b71a4..1d87bfab 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.inf index e5917c82..469e9597 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN68.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.553 +; Auto Generated 20150910_193652.489 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.sys index 4894d4db..5bb3df2e 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN68.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.cat index 8a4c12fa..cbd44890 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.inf index 3d79a0be..ded708ab 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN69.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.650 +; Auto Generated 20150910_193652.595 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.sys index 81b4ab56..fb3bf768 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN69.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.cat index 881f9b6b..2cbf4071 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.inf index ded7f487..c7e18702 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN7.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.633 +; Auto Generated 20150910_193645.737 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.sys index 26e5223c..6cea54c3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN7.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.cat index 17ba0cf3..bcc8b5bf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.inf index 8138e186..3876127b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN70.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.745 +; Auto Generated 20150910_193652.700 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.sys index d65ef7db..757525e2 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN70.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.cat index 792d2b3e..ac7f7640 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.inf index c6a88829..64f35a14 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN71.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.841 +; Auto Generated 20150910_193652.805 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.sys index 436e15c9..86a0bd60 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN71.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.cat index 21d10b6a..9756f808 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.inf index a458fb2d..d6d6073e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN72.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023429.937 +; Auto Generated 20150910_193652.910 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.sys index 68b06072..27530354 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN72.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.cat index ef458a6f..9004d643 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.inf index 691adc00..321d9f28 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN73.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.031 +; Auto Generated 20150910_193653.015 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.sys index 2741f69b..049f694c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN73.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.cat index 06dbb804..38e5485d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.inf index f8639724..ab13a6ef 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN74.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.127 +; Auto Generated 20150910_193653.120 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.sys index 199f5e4a..5a866ada 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN74.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.cat index 7eb2d10d..214a83c8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.inf index 7f8c0771..95364c41 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN75.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.224 +; Auto Generated 20150910_193653.225 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.sys index a42f0b1e..41cf0feb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN75.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.cat index 2c7fc44d..9e938768 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.inf index acfddb3b..11d505b0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN76.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.320 +; Auto Generated 20150910_193653.332 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.sys index 066345d6..edd457ce 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN76.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.cat index 0e09b859..081b06ed 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.inf index 1e7efc9c..35eb0ca6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN77.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.415 +; Auto Generated 20150910_193653.438 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.sys index 9b98a681..e959c06c 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN77.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.cat index 78a3f7c2..79653308 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.inf index 9e6c2dfe..9f21539c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN78.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.510 +; Auto Generated 20150910_193653.544 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.sys index 5587b152..744fc350 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN78.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.cat index 5fa918f9..520ac23d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.inf index 69ca19cc..08a92f38 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN79.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.606 +; Auto Generated 20150910_193653.648 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.sys index 8bb5d30e..f87aab79 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN79.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.cat index 35828c23..519f34e6 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.inf index f6e0ff8e..eca59dc0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN8.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.730 +; Auto Generated 20150910_193645.844 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.sys index 386d89bf..3a1fbd22 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN8.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.cat index 02de8c12..de4c74c5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.inf index 6a525075..eb9378a7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN80.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.702 +; Auto Generated 20150910_193653.753 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.sys index 03bdcb97..8948f970 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN80.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.cat index ac8707ba..f05cbee0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.inf index 304a2021..7edc5ce4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN81.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.798 +; Auto Generated 20150910_193653.859 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.sys index 2c50c637..f1aadb61 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN81.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.cat index 2a8fcac7..864ea086 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.inf index 732fd228..a01d1170 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN82.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.894 +; Auto Generated 20150910_193653.965 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.sys index 0720d17e..77c3a00f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN82.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.cat index 58428f19..88d4f2a3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.inf index 235d91e0..de3a2f19 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN83.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023430.990 +; Auto Generated 20150910_193654.068 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.sys index 64af0c6f..b85eb05b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN83.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.cat index d27c297a..e48fbc1b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.inf index 8052c882..041a2a2d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN84.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.087 +; Auto Generated 20150910_193654.173 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.sys index dae8bcbe..12d41cdb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN84.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.cat index e1d72ad3..ebe19a54 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.inf index 81a924b8..b8cbd86e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN85.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.184 +; Auto Generated 20150910_193654.277 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.sys index df2c36bb..af3a30cc 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN85.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.cat index 5c4a3281..6176150f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.inf index c2bab425..1c758664 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN86.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.283 +; Auto Generated 20150910_193654.381 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.sys index ea2bb5a3..c825f358 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.cat index a155e7de..ba364986 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.inf index 0f012c5e..97d853cd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN87.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.380 +; Auto Generated 20150910_193654.485 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.sys index 6e5c96a4..87175167 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN87.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.cat index 5161902b..a4e7ddf4 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.inf index 7057e1d1..b717d1eb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN88.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.476 +; Auto Generated 20150910_193654.591 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.sys index afbb37d2..970b1189 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN88.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.cat index 89a60d07..057933c3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.inf index 9f26a073..c2ee6828 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN89.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.573 +; Auto Generated 20150910_193654.695 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.sys index 3c7f3628..1ca32268 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN89.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.cat index dcdc4217..1ce3b6a5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.inf index 03a6f0b3..13d30fba 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN9.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023423.830 +; Auto Generated 20150910_193645.950 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.sys index d7f9e8dc..740e22e5 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN9.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.cat index 0e7a17e6..203d6a90 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.inf index 1c0117fb..0070de3a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN90.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.670 +; Auto Generated 20150910_193654.800 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.sys index ab743338..f30cecd3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN90.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.cat index 716f7f7f..1d76a833 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.inf index 3cd8646a..fb145359 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN91.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.767 +; Auto Generated 20150910_193654.904 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.sys index 2a86c196..8cdddcc0 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN91.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.cat index 272e0b2e..06798238 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.inf index 6f77f691..df9dccc5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN92.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.862 +; Auto Generated 20150910_193655.010 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.sys index 053da0c2..1f5f2fab 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN92.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.cat index 8d1c3d28..fc3d6f90 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.inf index 1c8e4cd1..3fe90903 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN93.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023431.958 +; Auto Generated 20150910_193655.115 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.sys index ab549c5d..ab238d35 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN93.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.cat index c56aa9dd..6872fa18 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.inf index d1371d00..a93ffc3f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN94.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.054 +; Auto Generated 20150910_193655.240 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.sys index 6c1f3c50..e6dab7ae 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN94.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.cat index c169f24b..50183315 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.inf index 80bc8bb1..d12e450b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN95.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.151 +; Auto Generated 20150910_193655.364 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.sys index 78a9aa68..ed7603eb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN95.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.cat index 681c530c..26f1e04f 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.inf index aaee6db8..b7152a63 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN96.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.247 +; Auto Generated 20150910_193655.468 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.sys index 891300b5..1193a8b3 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN96.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.cat index 3d783d39..cd035fcf 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.inf index 1a663ac7..845c4a29 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN97.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.343 +; Auto Generated 20150910_193655.573 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.sys index 6d66494e..29b9bb06 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN97.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.cat index b7106f12..68fc17ea 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.inf index e225e20c..2df97d89 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN98.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.439 +; Auto Generated 20150910_193655.677 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.sys index 08ea3912..6490a381 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN98.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.cat b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.cat index 87a59ef5..d396fcc7 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.inf b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.inf index bedf9d1c..48c5b9f7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = Neo6_x86_VPN99.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023432.535 +; Auto Generated 20150910_193655.782 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.sys b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.sys index 5b45d8a4..61c5c62a 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win10/x86/Neo6_x86_VPN99.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64.sys b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64.sys index a25c9044..1d9753bb 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN.inf index a6312b2b..574ee98f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.675 +; Auto Generated 20150910_193642.855 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN10.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN10.inf index 0aeb0e27..082e0d1b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN10.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN10.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN10.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.697 +; Auto Generated 20150910_193642.877 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN100.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN100.inf index 7b98ad03..fa056339 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN100.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN100.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN100.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.897 +; Auto Generated 20150910_193643.073 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN101.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN101.inf index 298ef0b0..e35a8769 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN101.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN101.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN101.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.899 +; Auto Generated 20150910_193643.075 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN102.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN102.inf index 14c77842..10567f78 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN102.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN102.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN102.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.902 +; Auto Generated 20150910_193643.077 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN103.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN103.inf index 8c79f17b..80ecfef9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN103.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN103.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN103.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.904 +; Auto Generated 20150910_193643.079 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN104.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN104.inf index 3719293a..f6d0d23f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN104.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN104.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN104.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.906 +; Auto Generated 20150910_193643.082 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN105.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN105.inf index 78b8a64d..16da388b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN105.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN105.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN105.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.908 +; Auto Generated 20150910_193643.085 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN106.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN106.inf index fe736f63..f8778579 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN106.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN106.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN106.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.911 +; Auto Generated 20150910_193643.087 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN107.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN107.inf index a2b0efe5..e3251b8f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN107.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN107.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN107.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.913 +; Auto Generated 20150910_193643.089 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN108.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN108.inf index 6f58adc4..68c25d5e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN108.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN108.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN108.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.915 +; Auto Generated 20150910_193643.092 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN109.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN109.inf index de04df4c..8ee33c1f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN109.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN109.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN109.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.917 +; Auto Generated 20150910_193643.094 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN11.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN11.inf index 51d0ee74..adadb7ec 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN11.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN11.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN11.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.699 +; Auto Generated 20150910_193642.879 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN110.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN110.inf index 41888ee1..caf39225 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN110.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN110.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN110.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.919 +; Auto Generated 20150910_193643.097 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN111.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN111.inf index 2f02a74c..5e9ea585 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN111.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN111.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN111.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.921 +; Auto Generated 20150910_193643.099 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN112.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN112.inf index 5574b785..82464246 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN112.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN112.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN112.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.924 +; Auto Generated 20150910_193643.101 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN113.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN113.inf index d404c310..b3aee4a7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN113.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN113.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN113.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.926 +; Auto Generated 20150910_193643.105 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN114.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN114.inf index 4d0ba7f3..23988cce 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN114.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN114.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN114.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.928 +; Auto Generated 20150910_193643.108 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN115.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN115.inf index 29bbfa35..0259baa5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN115.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN115.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN115.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.930 +; Auto Generated 20150910_193643.111 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN116.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN116.inf index 7dbb6af9..8ded0091 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN116.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN116.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN116.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.932 +; Auto Generated 20150910_193643.114 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN117.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN117.inf index ad2d9164..f3f5880e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN117.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN117.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN117.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.934 +; Auto Generated 20150910_193643.116 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN118.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN118.inf index 0c579b0b..2bbe3fab 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN118.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN118.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN118.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.937 +; Auto Generated 20150910_193643.119 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN119.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN119.inf index c76a50bf..ba6f3a7b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN119.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN119.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN119.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.939 +; Auto Generated 20150910_193643.122 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN12.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN12.inf index 4ffadbd7..86c0df64 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN12.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN12.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN12.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.701 +; Auto Generated 20150910_193642.881 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN120.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN120.inf index b6607297..536b0844 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN120.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN120.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN120.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.941 +; Auto Generated 20150910_193643.124 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN121.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN121.inf index 1edd58e5..2f5031bc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN121.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN121.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN121.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.943 +; Auto Generated 20150910_193643.127 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN122.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN122.inf index c666a20f..c5a5a8ac 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN122.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN122.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN122.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.945 +; Auto Generated 20150910_193643.129 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN123.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN123.inf index fbc72b98..2518c290 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN123.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN123.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN123.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.947 +; Auto Generated 20150910_193643.132 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN124.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN124.inf index 6244fa74..4b79d9d1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN124.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN124.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN124.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.950 +; Auto Generated 20150910_193643.134 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN125.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN125.inf index efad6cce..e7cbc8ae 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN125.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN125.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN125.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.952 +; Auto Generated 20150910_193643.136 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN126.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN126.inf index dbbe160b..71d4efdf 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN126.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN126.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN126.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.954 +; Auto Generated 20150910_193643.139 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN127.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN127.inf index dcdfa0fa..3e0a456f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN127.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN127.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN127.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.956 +; Auto Generated 20150910_193643.141 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN13.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN13.inf index 4eed53fb..dd17d533 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN13.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN13.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN13.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.704 +; Auto Generated 20150910_193642.883 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN14.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN14.inf index c208362a..9f2e3927 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN14.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN14.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN14.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.706 +; Auto Generated 20150910_193642.886 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN15.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN15.inf index 62e1ad1c..e4dcd30b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN15.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN15.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN15.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.708 +; Auto Generated 20150910_193642.888 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN16.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN16.inf index 7c4b162c..3e974444 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN16.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN16.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN16.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.710 +; Auto Generated 20150910_193642.890 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN17.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN17.inf index 3a900aa5..155b0eb6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN17.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN17.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN17.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.713 +; Auto Generated 20150910_193642.892 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN18.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN18.inf index 0a46ed4b..6e647444 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN18.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN18.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN18.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.715 +; Auto Generated 20150910_193642.894 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN19.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN19.inf index 19ed0249..ab3a46e8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN19.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN19.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN19.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.717 +; Auto Generated 20150910_193642.897 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN2.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN2.inf index ce5a7c1d..95cb2950 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN2.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN2.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN2.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.677 +; Auto Generated 20150910_193642.858 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN20.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN20.inf index 4b6f8b25..a6bb2725 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN20.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN20.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN20.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.720 +; Auto Generated 20150910_193642.899 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN21.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN21.inf index 7668e59d..2f75669c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN21.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN21.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN21.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.722 +; Auto Generated 20150910_193642.901 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN22.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN22.inf index 3ca20c4e..cbda84a2 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN22.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN22.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN22.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.724 +; Auto Generated 20150910_193642.904 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN23.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN23.inf index 0ca3178c..eb954d19 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN23.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN23.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN23.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.726 +; Auto Generated 20150910_193642.906 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN24.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN24.inf index 1e9861d1..94a88718 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN24.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN24.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN24.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.729 +; Auto Generated 20150910_193642.909 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN25.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN25.inf index 42d86de3..0f674e3a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN25.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN25.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN25.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.731 +; Auto Generated 20150910_193642.911 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN26.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN26.inf index de432d73..94b600c2 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN26.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN26.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN26.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.733 +; Auto Generated 20150910_193642.913 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN27.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN27.inf index ba0feb93..290d6a09 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN27.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN27.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN27.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.736 +; Auto Generated 20150910_193642.915 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN28.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN28.inf index b18b8d6f..9bd1e8e1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN28.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN28.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN28.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.738 +; Auto Generated 20150910_193642.917 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN29.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN29.inf index 7acb2868..1d2bf726 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN29.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN29.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN29.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.740 +; Auto Generated 20150910_193642.919 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN3.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN3.inf index 996aadce..94fcdba8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN3.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN3.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN3.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.681 +; Auto Generated 20150910_193642.860 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN30.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN30.inf index fa2b8c4c..4d4aba98 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN30.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN30.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN30.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.742 +; Auto Generated 20150910_193642.921 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN31.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN31.inf index 79290019..42cd44bc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN31.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN31.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN31.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.744 +; Auto Generated 20150910_193642.923 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN32.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN32.inf index 0fead8a3..0d01cb2c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN32.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN32.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN32.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.747 +; Auto Generated 20150910_193642.926 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN33.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN33.inf index fddbd89b..0f747a1b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN33.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN33.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN33.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.749 +; Auto Generated 20150910_193642.928 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN34.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN34.inf index cc8ed956..ceece4e6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN34.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN34.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN34.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.751 +; Auto Generated 20150910_193642.930 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN35.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN35.inf index eb805d06..b32c2a45 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN35.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN35.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN35.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.753 +; Auto Generated 20150910_193642.933 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN36.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN36.inf index 9766157d..8a394121 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN36.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN36.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN36.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.756 +; Auto Generated 20150910_193642.935 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN37.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN37.inf index 3804bd5b..9b7f8204 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN37.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN37.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN37.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.758 +; Auto Generated 20150910_193642.937 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN38.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN38.inf index 680801ad..aba0262b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN38.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN38.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN38.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.760 +; Auto Generated 20150910_193642.939 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN39.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN39.inf index 34f5f7fc..f8ca3bbf 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN39.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN39.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN39.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.762 +; Auto Generated 20150910_193642.941 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN4.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN4.inf index 9f4d1a0c..e4101b65 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN4.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN4.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN4.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.683 +; Auto Generated 20150910_193642.863 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN40.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN40.inf index 9da4d406..5b2a1bc6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN40.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN40.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN40.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.764 +; Auto Generated 20150910_193642.943 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN41.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN41.inf index c8242425..9d21d86f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN41.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN41.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN41.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.767 +; Auto Generated 20150910_193642.946 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN42.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN42.inf index eb2d0934..a979251f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN42.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN42.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN42.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.769 +; Auto Generated 20150910_193642.948 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN43.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN43.inf index 5a8bc390..0662e0db 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN43.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN43.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN43.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.771 +; Auto Generated 20150910_193642.950 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN44.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN44.inf index d51415b6..e5eb7524 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN44.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN44.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN44.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.773 +; Auto Generated 20150910_193642.952 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN45.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN45.inf index 8ab26640..ac0eb2b3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN45.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN45.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN45.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.775 +; Auto Generated 20150910_193642.954 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN46.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN46.inf index 68d4adf5..26c58e7c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN46.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN46.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN46.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.778 +; Auto Generated 20150910_193642.956 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN47.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN47.inf index 90032014..bc2b53f9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN47.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN47.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN47.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.780 +; Auto Generated 20150910_193642.959 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN48.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN48.inf index bbc60279..1a6176d6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN48.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN48.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN48.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.782 +; Auto Generated 20150910_193642.961 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN49.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN49.inf index bba12b90..c8794bbc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN49.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN49.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN49.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.784 +; Auto Generated 20150910_193642.963 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN5.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN5.inf index 29569941..f2ed5972 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN5.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN5.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN5.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.686 +; Auto Generated 20150910_193642.865 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN50.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN50.inf index eab69d1e..1611d84c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN50.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN50.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN50.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.787 +; Auto Generated 20150910_193642.965 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN51.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN51.inf index 00131521..e479bfb3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN51.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN51.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN51.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.789 +; Auto Generated 20150910_193642.967 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN52.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN52.inf index ac4afd55..ee701f66 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN52.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN52.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN52.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.791 +; Auto Generated 20150910_193642.969 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN53.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN53.inf index 6d72aed9..bf85ddbf 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN53.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN53.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN53.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.793 +; Auto Generated 20150910_193642.972 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN54.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN54.inf index 3e308d31..acfe957a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN54.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN54.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN54.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.796 +; Auto Generated 20150910_193642.974 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN55.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN55.inf index d3848b39..ad92ab6d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN55.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN55.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN55.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.798 +; Auto Generated 20150910_193642.976 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN56.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN56.inf index b0af83d5..6116e78b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN56.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN56.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN56.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.800 +; Auto Generated 20150910_193642.978 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN57.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN57.inf index aca04209..c1ebdf33 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN57.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN57.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN57.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.802 +; Auto Generated 20150910_193642.980 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN58.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN58.inf index 56c90c94..7d754967 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN58.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN58.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN58.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.804 +; Auto Generated 20150910_193642.982 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN59.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN59.inf index 8bf2fb58..2612ff6e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN59.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN59.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN59.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.806 +; Auto Generated 20150910_193642.984 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN6.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN6.inf index e2cd97d0..39f18de7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN6.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN6.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN6.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.688 +; Auto Generated 20150910_193642.868 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN60.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN60.inf index 4f946242..7a63ef7a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN60.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN60.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN60.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.809 +; Auto Generated 20150910_193642.986 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN61.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN61.inf index decfef46..16f7556e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN61.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN61.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN61.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.811 +; Auto Generated 20150910_193642.988 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN62.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN62.inf index 90aa70af..1374fbbe 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN62.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN62.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN62.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.813 +; Auto Generated 20150910_193642.991 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN63.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN63.inf index 6bfd07d4..82160803 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN63.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN63.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN63.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.815 +; Auto Generated 20150910_193642.993 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN64.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN64.inf index 154fab94..0787701b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN64.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN64.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.817 +; Auto Generated 20150910_193642.995 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN65.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN65.inf index f85320c5..aab33204 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN65.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN65.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN65.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.819 +; Auto Generated 20150910_193642.997 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN66.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN66.inf index c32fcce9..e3f851cc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN66.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN66.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN66.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.822 +; Auto Generated 20150910_193642.999 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN67.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN67.inf index 7375af6e..45a97e80 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN67.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN67.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN67.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.824 +; Auto Generated 20150910_193643.002 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN68.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN68.inf index 41a27511..0d167c69 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN68.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN68.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN68.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.826 +; Auto Generated 20150910_193643.004 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN69.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN69.inf index f0aea4f5..b4779ced 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN69.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN69.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN69.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.828 +; Auto Generated 20150910_193643.006 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN7.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN7.inf index ba1297c9..aeab626a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN7.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN7.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN7.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.690 +; Auto Generated 20150910_193642.870 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN70.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN70.inf index e9cc0041..e6906fe8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN70.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN70.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN70.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.831 +; Auto Generated 20150910_193643.008 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN71.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN71.inf index cac2cead..d7a45508 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN71.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN71.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN71.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.833 +; Auto Generated 20150910_193643.010 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN72.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN72.inf index ad6598f1..ee8785cc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN72.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN72.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN72.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.835 +; Auto Generated 20150910_193643.013 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN73.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN73.inf index 156e236d..6db3dda7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN73.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN73.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN73.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.837 +; Auto Generated 20150910_193643.015 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN74.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN74.inf index 8bbc5ef6..ad99c6da 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN74.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN74.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN74.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.840 +; Auto Generated 20150910_193643.017 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN75.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN75.inf index 29ef0d1f..3adf9f99 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN75.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN75.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN75.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.842 +; Auto Generated 20150910_193643.019 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN76.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN76.inf index 378baf79..8c9c901e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN76.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN76.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN76.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.844 +; Auto Generated 20150910_193643.021 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN77.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN77.inf index 96bf54cb..855226b1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN77.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN77.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN77.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.846 +; Auto Generated 20150910_193643.023 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN78.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN78.inf index 5db5c46a..0bfda73a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN78.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN78.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN78.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.848 +; Auto Generated 20150910_193643.025 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN79.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN79.inf index 8df5d172..dee7b82a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN79.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN79.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN79.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.851 +; Auto Generated 20150910_193643.027 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN8.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN8.inf index 3fd14b28..e90ea432 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN8.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN8.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN8.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.692 +; Auto Generated 20150910_193642.872 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN80.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN80.inf index 3c9639d2..a26eceed 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN80.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN80.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN80.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.853 +; Auto Generated 20150910_193643.029 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN81.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN81.inf index daa2bd10..474e42e3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN81.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN81.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN81.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.855 +; Auto Generated 20150910_193643.031 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN82.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN82.inf index 15d9a3e3..2d31a6f5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN82.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN82.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN82.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.857 +; Auto Generated 20150910_193643.034 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN83.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN83.inf index 63cd8317..ab8e2e7f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN83.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN83.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN83.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.859 +; Auto Generated 20150910_193643.036 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN84.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN84.inf index 1bd4457c..a507eb97 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN84.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN84.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN84.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.862 +; Auto Generated 20150910_193643.038 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN85.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN85.inf index 24747181..2310fdfe 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN85.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN85.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN85.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.864 +; Auto Generated 20150910_193643.040 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN86.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN86.inf index 0f66dbea..845ab18c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN86.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN86.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.866 +; Auto Generated 20150910_193643.042 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN87.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN87.inf index 7c90ab5a..fb02b314 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN87.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN87.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN87.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.868 +; Auto Generated 20150910_193643.044 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN88.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN88.inf index fcd8c7be..6653767a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN88.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN88.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN88.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.870 +; Auto Generated 20150910_193643.046 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN89.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN89.inf index a5c97a5d..c969e394 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN89.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN89.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN89.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.873 +; Auto Generated 20150910_193643.048 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN9.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN9.inf index f68a9547..6ab812d5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN9.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN9.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN9.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.695 +; Auto Generated 20150910_193642.874 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN90.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN90.inf index d4715e09..c5197c5e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN90.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN90.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN90.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.875 +; Auto Generated 20150910_193643.051 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN91.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN91.inf index 94682ad8..5d582e13 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN91.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN91.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN91.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.877 +; Auto Generated 20150910_193643.053 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN92.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN92.inf index 3e71d942..a78a8183 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN92.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN92.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN92.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.879 +; Auto Generated 20150910_193643.055 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN93.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN93.inf index ee47145d..e623204d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN93.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN93.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN93.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.881 +; Auto Generated 20150910_193643.057 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN94.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN94.inf index 13efb1dc..b7ae3a3b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN94.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN94.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN94.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.883 +; Auto Generated 20150910_193643.059 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN95.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN95.inf index 884b2ebf..bf5d69e6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN95.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN95.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN95.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.885 +; Auto Generated 20150910_193643.061 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN96.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN96.inf index 5cb4d5ec..d9682389 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN96.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN96.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN96.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.888 +; Auto Generated 20150910_193643.064 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN97.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN97.inf index 3f291bf1..e94e449d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN97.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN97.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN97.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.890 +; Auto Generated 20150910_193643.066 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN98.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN98.inf index a6785b53..115f7c14 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN98.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN98.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN98.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.893 +; Auto Generated 20150910_193643.068 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN99.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN99.inf index 89f57a97..792e9126 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN99.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/Neo6_x64_VPN99.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN99.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023420.895 +; Auto Generated 20150910_193643.070 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf.cat b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf.cat index 028fe0ff..9bf83afe 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf2.cat b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf2.cat index 38ca80dc..50569d8d 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf2.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win8/x64/inf2.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86.sys b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86.sys index fc63edce..3789e6e8 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86.sys and b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN.inf index cec3f57c..9444fa15 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.143 +; Auto Generated 20150910_193640.397 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN10.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN10.inf index c98f2d1b..f371fc92 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN10.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN10.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN10.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.162 +; Auto Generated 20150910_193640.418 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN100.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN100.inf index 7f023554..d877fd5f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN100.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN100.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN100.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.355 +; Auto Generated 20150910_193640.619 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN101.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN101.inf index e5b81210..68d16b20 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN101.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN101.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN101.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.357 +; Auto Generated 20150910_193640.622 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN102.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN102.inf index dda6c2fe..69da70fa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN102.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN102.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN102.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.360 +; Auto Generated 20150910_193640.624 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN103.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN103.inf index b05455d7..61205f6a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN103.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN103.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN103.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.362 +; Auto Generated 20150910_193640.626 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN104.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN104.inf index f51ddba9..73d7a76c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN104.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN104.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN104.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.364 +; Auto Generated 20150910_193640.628 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN105.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN105.inf index 6c357f73..914aace5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN105.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN105.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN105.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.366 +; Auto Generated 20150910_193640.630 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN106.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN106.inf index d62fe346..f1cc202e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN106.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN106.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN106.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.368 +; Auto Generated 20150910_193640.632 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN107.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN107.inf index e6211c58..d44a693b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN107.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN107.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN107.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.370 +; Auto Generated 20150910_193640.635 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN108.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN108.inf index 1a62aa65..86dbf01c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN108.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN108.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN108.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.373 +; Auto Generated 20150910_193640.637 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN109.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN109.inf index dcf1e698..3e041a2a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN109.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN109.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN109.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.375 +; Auto Generated 20150910_193640.639 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN11.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN11.inf index 43250092..b06d0fab 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN11.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN11.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN11.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.164 +; Auto Generated 20150910_193640.420 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN110.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN110.inf index a377b8ab..2ded9205 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN110.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN110.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN110.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.377 +; Auto Generated 20150910_193640.641 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN111.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN111.inf index 7e2c59eb..ea1b826a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN111.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN111.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN111.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.379 +; Auto Generated 20150910_193640.643 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN112.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN112.inf index 7b00f48c..b4a897b1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN112.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN112.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN112.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.381 +; Auto Generated 20150910_193640.645 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN113.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN113.inf index 9c565efe..057acd6c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN113.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN113.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN113.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.383 +; Auto Generated 20150910_193640.647 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN114.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN114.inf index b0a83054..e460e3db 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN114.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN114.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN114.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.385 +; Auto Generated 20150910_193640.649 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN115.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN115.inf index 24f66cc0..02c85126 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN115.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN115.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN115.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.388 +; Auto Generated 20150910_193640.652 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN116.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN116.inf index 7673a655..cb457145 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN116.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN116.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN116.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.390 +; Auto Generated 20150910_193640.654 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN117.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN117.inf index 3dc783ab..cf659ebd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN117.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN117.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN117.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.392 +; Auto Generated 20150910_193640.656 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN118.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN118.inf index 4c0e177c..597fd2d9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN118.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN118.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN118.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.394 +; Auto Generated 20150910_193640.658 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN119.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN119.inf index 40087317..2a5ec782 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN119.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN119.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN119.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.396 +; Auto Generated 20150910_193640.660 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN12.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN12.inf index 9ba4c0ac..e22ee005 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN12.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN12.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN12.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.167 +; Auto Generated 20150910_193640.423 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN120.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN120.inf index b4a726a7..c406c4d6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN120.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN120.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN120.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.398 +; Auto Generated 20150910_193640.662 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN121.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN121.inf index c575c9d8..a915abf0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN121.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN121.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN121.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.400 +; Auto Generated 20150910_193640.664 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN122.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN122.inf index b8de9e1f..962c2efb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN122.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN122.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN122.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.402 +; Auto Generated 20150910_193640.666 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN123.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN123.inf index be6e6cfe..1dac2126 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN123.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN123.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN123.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.405 +; Auto Generated 20150910_193640.668 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN124.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN124.inf index 744a275d..a080b18c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN124.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN124.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN124.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.407 +; Auto Generated 20150910_193640.671 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN125.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN125.inf index 0d82feac..8f3728d0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN125.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN125.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN125.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.409 +; Auto Generated 20150910_193640.673 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN126.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN126.inf index 65febf79..86a4c83a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN126.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN126.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN126.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.411 +; Auto Generated 20150910_193640.675 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN127.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN127.inf index 0588bc82..cec87cdb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN127.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN127.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN127.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.413 +; Auto Generated 20150910_193640.677 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN13.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN13.inf index 725024bf..b04aa9d7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN13.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN13.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN13.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.169 +; Auto Generated 20150910_193640.425 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN14.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN14.inf index 9ca5915a..1f9fe65a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN14.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN14.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN14.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.171 +; Auto Generated 20150910_193640.427 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN15.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN15.inf index 887cb514..b5086444 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN15.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN15.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN15.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.173 +; Auto Generated 20150910_193640.429 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN16.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN16.inf index eaef75eb..0ae4746c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN16.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN16.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN16.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.175 +; Auto Generated 20150910_193640.431 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN17.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN17.inf index 42966b3e..dc1982a5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN17.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN17.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN17.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.177 +; Auto Generated 20150910_193640.433 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN18.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN18.inf index f48548fe..35671748 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN18.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN18.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN18.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.179 +; Auto Generated 20150910_193640.435 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN19.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN19.inf index 79189992..c4739ba0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN19.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN19.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN19.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.181 +; Auto Generated 20150910_193640.438 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN2.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN2.inf index 847268e4..3a7e7773 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN2.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN2.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN2.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.145 +; Auto Generated 20150910_193640.399 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN20.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN20.inf index 9b867e2d..c1d95dda 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN20.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN20.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN20.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.184 +; Auto Generated 20150910_193640.440 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN21.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN21.inf index fc22ab6b..892d6b77 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN21.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN21.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN21.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.186 +; Auto Generated 20150910_193640.442 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN22.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN22.inf index 21c85249..f7882a27 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN22.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN22.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN22.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.188 +; Auto Generated 20150910_193640.444 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN23.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN23.inf index f07c60a7..bbb077aa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN23.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN23.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN23.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.190 +; Auto Generated 20150910_193640.446 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN24.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN24.inf index ca44f33e..2fadd12f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN24.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN24.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN24.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.192 +; Auto Generated 20150910_193640.448 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN25.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN25.inf index b8d0defe..665d2a04 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN25.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN25.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN25.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.194 +; Auto Generated 20150910_193640.450 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN26.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN26.inf index db54b7dd..5c59cf06 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN26.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN26.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN26.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.196 +; Auto Generated 20150910_193640.453 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN27.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN27.inf index 7b955455..ccd55730 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN27.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN27.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN27.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.198 +; Auto Generated 20150910_193640.455 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN28.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN28.inf index 50393fdc..85ac02c7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN28.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN28.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN28.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.201 +; Auto Generated 20150910_193640.457 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN29.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN29.inf index 67520cbe..a5148f66 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN29.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN29.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN29.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.204 +; Auto Generated 20150910_193640.459 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN3.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN3.inf index ebbd6fae..1b856903 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN3.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN3.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN3.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.148 +; Auto Generated 20150910_193640.402 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN30.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN30.inf index 644e45a7..16da8557 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN30.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN30.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN30.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.206 +; Auto Generated 20150910_193640.461 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN31.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN31.inf index a4691291..121b75da 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN31.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN31.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN31.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.208 +; Auto Generated 20150910_193640.463 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN32.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN32.inf index 2b14822f..eb642874 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN32.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN32.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN32.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.210 +; Auto Generated 20150910_193640.465 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN33.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN33.inf index 1cea817f..9c19308d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN33.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN33.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN33.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.212 +; Auto Generated 20150910_193640.467 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN34.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN34.inf index 77b552cf..9581d459 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN34.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN34.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN34.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.214 +; Auto Generated 20150910_193640.469 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN35.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN35.inf index 0541cebd..1c071a33 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN35.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN35.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN35.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.216 +; Auto Generated 20150910_193640.471 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN36.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN36.inf index e0baa56c..64d50e5e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN36.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN36.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN36.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.219 +; Auto Generated 20150910_193640.474 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN37.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN37.inf index 1f5d39a9..24ce8ea5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN37.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN37.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN37.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.221 +; Auto Generated 20150910_193640.476 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN38.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN38.inf index 3ad77128..addc8a3b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN38.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN38.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN38.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.223 +; Auto Generated 20150910_193640.478 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN39.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN39.inf index 48e963af..79d1d578 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN39.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN39.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN39.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.225 +; Auto Generated 20150910_193640.480 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN4.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN4.inf index 36214b2b..12650b23 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN4.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN4.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN4.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.150 +; Auto Generated 20150910_193640.404 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN40.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN40.inf index f704e6e3..f98516fa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN40.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN40.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN40.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.227 +; Auto Generated 20150910_193640.482 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN41.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN41.inf index 3671e466..27440538 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN41.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN41.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN41.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.229 +; Auto Generated 20150910_193640.484 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN42.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN42.inf index 01e219d1..94dbf763 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN42.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN42.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN42.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.231 +; Auto Generated 20150910_193640.487 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN43.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN43.inf index c463fdd7..dc43c6bf 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN43.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN43.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN43.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.233 +; Auto Generated 20150910_193640.489 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN44.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN44.inf index 68ab0056..4abc7ddb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN44.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN44.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN44.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.236 +; Auto Generated 20150910_193640.491 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN45.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN45.inf index 2083dfb8..6dfcd828 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN45.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN45.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN45.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.238 +; Auto Generated 20150910_193640.493 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN46.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN46.inf index a5fd7e52..554aaf45 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN46.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN46.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN46.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.240 +; Auto Generated 20150910_193640.495 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN47.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN47.inf index fdffe6b0..2ac1af69 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN47.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN47.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN47.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.242 +; Auto Generated 20150910_193640.498 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN48.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN48.inf index 12054c94..1ca450fa 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN48.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN48.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN48.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.244 +; Auto Generated 20150910_193640.500 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN49.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN49.inf index 5c72f221..a4492fb4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN49.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN49.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN49.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.246 +; Auto Generated 20150910_193640.502 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN5.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN5.inf index cd4b40e1..14ae5478 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN5.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN5.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN5.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.152 +; Auto Generated 20150910_193640.407 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN50.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN50.inf index 61897578..25582d6b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN50.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN50.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN50.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.248 +; Auto Generated 20150910_193640.504 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN51.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN51.inf index 8dc03cc8..fd5b427f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN51.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN51.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN51.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.250 +; Auto Generated 20150910_193640.506 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN52.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN52.inf index 717b2d39..c1b46f3e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN52.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN52.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN52.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.253 +; Auto Generated 20150910_193640.509 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN53.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN53.inf index d175ec3f..f4359a60 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN53.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN53.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN53.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.255 +; Auto Generated 20150910_193640.511 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN54.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN54.inf index af8ad9a8..72dd09e9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN54.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN54.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN54.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.257 +; Auto Generated 20150910_193640.513 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN55.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN55.inf index c0fdfcc9..b2d50854 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN55.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN55.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN55.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.259 +; Auto Generated 20150910_193640.515 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN56.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN56.inf index c32af077..0f75847a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN56.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN56.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN56.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.261 +; Auto Generated 20150910_193640.517 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN57.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN57.inf index 2010c106..33a152be 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN57.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN57.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN57.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.263 +; Auto Generated 20150910_193640.519 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN58.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN58.inf index 12a2b8f4..1ece5f39 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN58.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN58.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN58.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.265 +; Auto Generated 20150910_193640.521 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN59.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN59.inf index 3a06c4d5..e908a6f9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN59.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN59.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN59.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.267 +; Auto Generated 20150910_193640.523 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN6.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN6.inf index c50d3fdc..ef43f61b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN6.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN6.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN6.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.154 +; Auto Generated 20150910_193640.409 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN60.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN60.inf index 8393bcf4..8eec86c7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN60.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN60.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN60.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.270 +; Auto Generated 20150910_193640.525 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN61.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN61.inf index 7ccdd0ba..debf188a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN61.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN61.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN61.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.272 +; Auto Generated 20150910_193640.528 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN62.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN62.inf index efb581f8..726895bb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN62.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN62.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN62.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.274 +; Auto Generated 20150910_193640.530 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN63.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN63.inf index 01b572fb..8b0796b2 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN63.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN63.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN63.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.276 +; Auto Generated 20150910_193640.532 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN64.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN64.inf index 6b6b13b3..1b9d8352 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN64.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN64.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.278 +; Auto Generated 20150910_193640.535 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN65.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN65.inf index 7b641e79..433d5b1a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN65.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN65.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN65.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.280 +; Auto Generated 20150910_193640.537 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN66.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN66.inf index 01ea1c01..a77b07a7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN66.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN66.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN66.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.282 +; Auto Generated 20150910_193640.539 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN67.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN67.inf index 77f0c3e5..3fa8c1f8 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN67.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN67.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN67.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.284 +; Auto Generated 20150910_193640.542 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN68.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN68.inf index e1767ffa..4b249287 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN68.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN68.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN68.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.286 +; Auto Generated 20150910_193640.544 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN69.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN69.inf index 81fb6d47..fd877d0f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN69.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN69.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN69.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.288 +; Auto Generated 20150910_193640.546 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN7.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN7.inf index 76ba61d5..051df7a1 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN7.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN7.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN7.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.156 +; Auto Generated 20150910_193640.411 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN70.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN70.inf index c4af1dbf..54d850c6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN70.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN70.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN70.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.291 +; Auto Generated 20150910_193640.550 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN71.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN71.inf index 2ca57390..aad2faae 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN71.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN71.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN71.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.293 +; Auto Generated 20150910_193640.552 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN72.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN72.inf index 7f37c147..e2c468f7 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN72.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN72.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN72.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.295 +; Auto Generated 20150910_193640.555 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN73.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN73.inf index 0c225f00..01a8fb65 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN73.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN73.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN73.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.297 +; Auto Generated 20150910_193640.558 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN74.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN74.inf index 4f36c539..3a052260 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN74.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN74.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN74.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.299 +; Auto Generated 20150910_193640.560 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN75.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN75.inf index 34256727..39b3846b 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN75.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN75.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN75.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.301 +; Auto Generated 20150910_193640.564 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN76.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN76.inf index 70ddcf8b..3ed34dc3 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN76.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN76.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN76.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.303 +; Auto Generated 20150910_193640.567 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN77.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN77.inf index bab40f41..292ec478 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN77.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN77.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN77.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.306 +; Auto Generated 20150910_193640.570 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN78.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN78.inf index ceefc44b..a7cb5bc6 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN78.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN78.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN78.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.308 +; Auto Generated 20150910_193640.572 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN79.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN79.inf index a714c632..d044aa98 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN79.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN79.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN79.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.310 +; Auto Generated 20150910_193640.574 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN8.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN8.inf index 71fcf561..31df77e9 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN8.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN8.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN8.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.158 +; Auto Generated 20150910_193640.413 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN80.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN80.inf index d8336c67..401bc92f 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN80.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN80.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN80.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.312 +; Auto Generated 20150910_193640.576 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN81.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN81.inf index 20910f96..d753095e 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN81.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN81.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN81.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.314 +; Auto Generated 20150910_193640.578 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN82.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN82.inf index df0c9df2..7d4ee9b5 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN82.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN82.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN82.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.316 +; Auto Generated 20150910_193640.581 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN83.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN83.inf index 01ffe7c3..a9d9c1cc 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN83.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN83.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN83.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.318 +; Auto Generated 20150910_193640.583 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN84.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN84.inf index 8a4b5163..d685e40a 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN84.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN84.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN84.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.320 +; Auto Generated 20150910_193640.585 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN85.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN85.inf index 87f549b5..8e75ac1c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN85.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN85.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN85.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.322 +; Auto Generated 20150910_193640.587 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN86.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN86.inf index b0e9433f..8eed6413 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN86.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN86.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.325 +; Auto Generated 20150910_193640.589 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN87.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN87.inf index f248de41..ed8a75ea 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN87.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN87.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN87.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.327 +; Auto Generated 20150910_193640.591 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN88.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN88.inf index 7859146c..e91b4066 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN88.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN88.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN88.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.330 +; Auto Generated 20150910_193640.593 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN89.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN89.inf index 65d5bddd..5763f588 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN89.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN89.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN89.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.332 +; Auto Generated 20150910_193640.595 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN9.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN9.inf index 931a7002..edc661d4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN9.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN9.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN9.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.160 +; Auto Generated 20150910_193640.416 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN90.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN90.inf index 44c87009..26c3c577 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN90.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN90.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN90.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.334 +; Auto Generated 20150910_193640.597 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN91.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN91.inf index 0d1d21f3..520affb4 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN91.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN91.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN91.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.336 +; Auto Generated 20150910_193640.600 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN92.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN92.inf index 98c97f94..ef28d2cd 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN92.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN92.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN92.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.338 +; Auto Generated 20150910_193640.602 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN93.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN93.inf index 42afa8f1..c7d811fb 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN93.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN93.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN93.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.340 +; Auto Generated 20150910_193640.604 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN94.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN94.inf index e92bb3fa..7a26be86 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN94.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN94.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN94.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.343 +; Auto Generated 20150910_193640.607 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN95.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN95.inf index a9473962..3d5e0034 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN95.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN95.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN95.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.345 +; Auto Generated 20150910_193640.609 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN96.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN96.inf index d33aff06..5a267095 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN96.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN96.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN96.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.347 +; Auto Generated 20150910_193640.611 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN97.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN97.inf index 7e53f93f..80927f2c 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN97.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN97.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN97.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.349 +; Auto Generated 20150910_193640.613 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN98.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN98.inf index cf0d2b82..4ba421e0 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN98.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN98.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN98.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.351 +; Auto Generated 20150910_193640.615 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN99.inf b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN99.inf index 834da334..cc26479d 100644 --- a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN99.inf +++ b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/Neo6_x86_VPN99.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = inf_VPN99.cat [Manufacturer] @@ -110,5 +110,5 @@ On = "On" Off = "Off" -; Auto Generated 20150530_023418.353 +; Auto Generated 20150910_193640.617 diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf.cat b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf.cat index 768394b3..00000d4b 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf2.cat b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf2.cat index 0f531936..31db8e01 100644 Binary files a/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf2.cat and b/src/bin/hamcore/DriverPackages/Neo6_Win8/x86/inf2.cat differ diff --git a/src/bin/hamcore/DriverPackages/Neo9x/x86/Neo9x_x86.inf b/src/bin/hamcore/DriverPackages/Neo9x/x86/Neo9x_x86.inf index 12c427df..aa5b6e2f 100644 --- a/src/bin/hamcore/DriverPackages/Neo9x/x86/Neo9x_x86.inf +++ b/src/bin/hamcore/DriverPackages/Neo9x/x86/Neo9x_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = Net ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 [Manufacturer] %CompanyName% = SoftEther @@ -112,5 +112,5 @@ KeepLink = "Keep Link" On = "On" Off = "Off" -; Auto Generated 20150530_023418.124 +; Auto Generated 20150910_193640.379 diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_Win10_x64.cat b/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_Win10_x64.cat index 27df76ac..302554cc 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_Win10_x64.cat and b/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_Win10_x64.cat differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.inf b/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.inf index c9c75345..332273db 100644 --- a/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.inf +++ b/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = NetTrans ClassGUID = {4D36E975-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = SeLow_Win10_x64.cat [Manufacturer] @@ -64,5 +64,5 @@ SeLow_DisplayName = "SoftEther Lightweight Network Protocol" SeLow_Description = "A lightweight helper kernel-mode module for PacketiX VPN / SoftEther VPN." -; Auto Generated 20150530_023452.294 +; Auto Generated 20150910_193717.957 diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.sys b/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.sys index c473d374..25185822 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.sys and b/src/bin/hamcore/DriverPackages/SeLow_Win10/x64/SeLow_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_Win10_x86.cat b/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_Win10_x86.cat index 1a17433d..f5159600 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_Win10_x86.cat and b/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_Win10_x86.cat differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.inf b/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.inf index b20f13cd..a0fdb822 100644 --- a/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.inf +++ b/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = NetTrans ClassGUID = {4D36E975-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = SeLow_Win10_x86.cat [Manufacturer] @@ -64,5 +64,5 @@ SeLow_DisplayName = "SoftEther Lightweight Network Protocol" SeLow_Description = "A lightweight helper kernel-mode module for PacketiX VPN / SoftEther VPN." -; Auto Generated 20150530_023451.316 +; Auto Generated 20150910_193717.053 diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.sys b/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.sys index 1680f577..cba373a3 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.sys and b/src/bin/hamcore/DriverPackages/SeLow_Win10/x86/SeLow_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.inf b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.inf index 20debd42..91d8a4fe 100644 --- a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.inf +++ b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = NetTrans ClassGUID = {4D36E975-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = SeLow_Win8_x64.cat [Manufacturer] @@ -64,5 +64,5 @@ SeLow_DisplayName = "SoftEther Lightweight Network Protocol" SeLow_Description = "A lightweight helper kernel-mode module for PacketiX VPN / SoftEther VPN." -; Auto Generated 20150530_023449.408 +; Auto Generated 20150910_193715.227 diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.sys b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.sys index a2ef14ad..99df463d 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.sys and b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/SeLow_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf.cat b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf.cat index d433158e..1fc2a035 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf.cat and b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf.cat differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf2.cat b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf2.cat index f32596a0..ebd8c119 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf2.cat and b/src/bin/hamcore/DriverPackages/SeLow_Win8/x64/inf2.cat differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.inf b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.inf index c168a6af..41ff1fad 100644 --- a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.inf +++ b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = NetTrans ClassGUID = {4D36E975-E325-11CE-BFC1-08002BE10318} Provider = %CompanyName% -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = SeLow_Win8_x86.cat [Manufacturer] @@ -64,5 +64,5 @@ SeLow_DisplayName = "SoftEther Lightweight Network Protocol" SeLow_Description = "A lightweight helper kernel-mode module for PacketiX VPN / SoftEther VPN." -; Auto Generated 20150530_023447.462 +; Auto Generated 20150910_193713.290 diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.sys b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.sys index 3e82b334..f0d4e9e2 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.sys and b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/SeLow_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf.cat b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf.cat index 73def256..b356f7ad 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf.cat and b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf.cat differ diff --git a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf2.cat b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf2.cat index 96a6560f..ac43de5b 100644 Binary files a/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf2.cat and b/src/bin/hamcore/DriverPackages/SeLow_Win8/x86/inf2.cat differ diff --git a/src/bin/hamcore/DriverPackages/See/x64/See_x64.sys b/src/bin/hamcore/DriverPackages/See/x64/See_x64.sys index 5f365667..7989214b 100644 Binary files a/src/bin/hamcore/DriverPackages/See/x64/See_x64.sys and b/src/bin/hamcore/DriverPackages/See/x64/See_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/See/x86/See_x86.sys b/src/bin/hamcore/DriverPackages/See/x86/See_x86.sys index cf2fe7ec..4da547f0 100644 Binary files a/src/bin/hamcore/DriverPackages/See/x86/See_x86.sys and b/src/bin/hamcore/DriverPackages/See/x86/See_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Wfp/x64/inf.cat b/src/bin/hamcore/DriverPackages/Wfp/x64/inf.cat index 2fc50625..58321251 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp/x64/inf.cat and b/src/bin/hamcore/DriverPackages/Wfp/x64/inf.cat differ diff --git a/src/bin/hamcore/DriverPackages/Wfp/x64/inf2.cat b/src/bin/hamcore/DriverPackages/Wfp/x64/inf2.cat index 4d7387c7..5b27eee8 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp/x64/inf2.cat and b/src/bin/hamcore/DriverPackages/Wfp/x64/inf2.cat differ diff --git a/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.inf b/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.inf index a262fd57..09756d75 100644 --- a/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.inf +++ b/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = WFPCALLOUTS ClassGuid = {57465043-616C-6C6F-7574-5F636C617373} Provider = "SoftEther Corporation" -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = pxwfp_x64.cat [SourceDisksNames] @@ -48,5 +48,5 @@ ErrorControl = 1 ServiceBinary = %12%\pxwfp_x64.sys -; Auto Generated 20150530_023455.418 +; Auto Generated 20150910_193720.770 diff --git a/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.sys b/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.sys index 541850a0..4e39f310 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.sys and b/src/bin/hamcore/DriverPackages/Wfp/x64/pxwfp_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Wfp/x86/inf.cat b/src/bin/hamcore/DriverPackages/Wfp/x86/inf.cat index 527b5729..f34b36b4 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp/x86/inf.cat and b/src/bin/hamcore/DriverPackages/Wfp/x86/inf.cat differ diff --git a/src/bin/hamcore/DriverPackages/Wfp/x86/inf2.cat b/src/bin/hamcore/DriverPackages/Wfp/x86/inf2.cat index 7ca048de..a88b33ed 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp/x86/inf2.cat and b/src/bin/hamcore/DriverPackages/Wfp/x86/inf2.cat differ diff --git a/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.inf b/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.inf index 36cb62e8..32955c40 100644 --- a/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.inf +++ b/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = WFPCALLOUTS ClassGuid = {57465043-616C-6C6F-7574-5F636C617373} Provider = "SoftEther Corporation" -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = pxwfp_x86.cat [SourceDisksNames] @@ -48,5 +48,5 @@ ErrorControl = 1 ServiceBinary = %12%\pxwfp_x86.sys -; Auto Generated 20150530_023453.428 +; Auto Generated 20150910_193718.928 diff --git a/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.sys b/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.sys index c821fb8c..c205384a 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.sys and b/src/bin/hamcore/DriverPackages/Wfp/x86/pxwfp_x86.sys differ diff --git a/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_Win10_x64.cat b/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_Win10_x64.cat index 7a1a0f34..d94f6b33 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_Win10_x64.cat and b/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_Win10_x64.cat differ diff --git a/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.inf b/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.inf index bbf0b8e6..8c777b07 100644 --- a/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.inf +++ b/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = WFPCALLOUTS ClassGuid = {57465043-616C-6C6F-7574-5F636C617373} Provider = "SoftEther Corporation" -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = pxwfp_Win10_x64.cat [SourceDisksNames] @@ -48,5 +48,5 @@ ErrorControl = 1 ServiceBinary = %12%\pxwfp_x64.sys -; Auto Generated 20150530_023458.419 +; Auto Generated 20150910_193723.453 diff --git a/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.sys b/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.sys index ef4e9892..f30c0b9f 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.sys and b/src/bin/hamcore/DriverPackages/Wfp_Win10/x64/pxwfp_x64.sys differ diff --git a/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_Win10_x86.cat b/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_Win10_x86.cat index 38f0f65c..941d7c9f 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_Win10_x86.cat and b/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_Win10_x86.cat differ diff --git a/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.inf b/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.inf index 92aa44a0..b76b1d78 100644 --- a/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.inf +++ b/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.inf @@ -3,14 +3,14 @@ ; Copyright (c) SoftEther Corporation. All Rights Reserved. ; http://www.softether.co.jp/ ; -; BUILD 9558 +; BUILD 9575 [Version] Signature = "$Windows NT$" Class = WFPCALLOUTS ClassGuid = {57465043-616C-6C6F-7574-5F636C617373} Provider = "SoftEther Corporation" -DriverVer = 05/29/2015, 4.16.0.9558 +DriverVer = 09/09/2015, 4.19.0.9575 CatalogFile.NT = pxwfp_Win10_x86.cat [SourceDisksNames] @@ -48,5 +48,5 @@ ErrorControl = 1 ServiceBinary = %12%\pxwfp_x86.sys -; Auto Generated 20150530_023457.398 +; Auto Generated 20150910_193722.531 diff --git a/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.sys b/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.sys index 3b7c0b91..1be3a559 100644 Binary files a/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.sys and b/src/bin/hamcore/DriverPackages/Wfp_Win10/x86/pxwfp_x86.sys differ diff --git a/src/bin/hamcore/SeLow_x64.sys b/src/bin/hamcore/SeLow_x64.sys new file mode 100644 index 00000000..95f91acf Binary files /dev/null and b/src/bin/hamcore/SeLow_x64.sys differ diff --git a/src/bin/hamcore/SeLow_x86.sys b/src/bin/hamcore/SeLow_x86.sys new file mode 100644 index 00000000..3e63bac6 Binary files /dev/null and b/src/bin/hamcore/SeLow_x86.sys differ diff --git a/src/bin/hamcore/pxwfp_x64.sys b/src/bin/hamcore/pxwfp_x64.sys new file mode 100644 index 00000000..5fae09b0 Binary files /dev/null and b/src/bin/hamcore/pxwfp_x64.sys differ diff --git a/src/bin/hamcore/pxwfp_x86.sys b/src/bin/hamcore/pxwfp_x86.sys new file mode 100644 index 00000000..c03635ec Binary files /dev/null and b/src/bin/hamcore/pxwfp_x86.sys differ diff --git a/src/bin/hamcore/see.sys b/src/bin/hamcore/see.sys new file mode 100644 index 00000000..b59ab4de Binary files /dev/null and b/src/bin/hamcore/see.sys differ diff --git a/src/bin/hamcore/see_x64.sys b/src/bin/hamcore/see_x64.sys new file mode 100644 index 00000000..1296fe92 Binary files /dev/null and b/src/bin/hamcore/see_x64.sys differ diff --git a/src/bin/hamcore/vpn_driver.sys b/src/bin/hamcore/vpn_driver.sys new file mode 100644 index 00000000..3154524b Binary files /dev/null and b/src/bin/hamcore/vpn_driver.sys differ diff --git a/src/bin/hamcore/vpn_driver6.sys b/src/bin/hamcore/vpn_driver6.sys new file mode 100644 index 00000000..a026b683 Binary files /dev/null and b/src/bin/hamcore/vpn_driver6.sys differ diff --git a/src/bin/hamcore/vpn_driver6_x64.sys b/src/bin/hamcore/vpn_driver6_x64.sys new file mode 100644 index 00000000..76eee12e Binary files /dev/null and b/src/bin/hamcore/vpn_driver6_x64.sys differ diff --git a/src/bin/hamcore/vpn_driver_x64.sys b/src/bin/hamcore/vpn_driver_x64.sys new file mode 100644 index 00000000..31700b24 Binary files /dev/null and b/src/bin/hamcore/vpn_driver_x64.sys differ diff --git a/src/bin/vpnweb.cab b/src/bin/vpnweb.cab index d5d3f2a7..07e7e7ac 100644 Binary files a/src/bin/vpnweb.cab and b/src/bin/vpnweb.cab differ diff --git a/src/bin/vpnweb.ocx b/src/bin/vpnweb.ocx index d105b91e..a19b4e04 100644 Binary files a/src/bin/vpnweb.ocx and b/src/bin/vpnweb.ocx differ diff --git a/src/vpnweb/vpnweb.h b/src/vpnweb/vpnweb.h index ec7c44a2..7f284aaf 100644 --- a/src/vpnweb/vpnweb.h +++ b/src/vpnweb/vpnweb.h @@ -4,7 +4,7 @@ /* File created by MIDL compiler version 7.00.0500 */ -/* at Sun Jul 26 15:00:08 2015 +/* at Tue Sep 15 09:39:43 2015 */ /* Compiler settings for .\vpnweb.idl: Oicf, W1, Zp8, env=Win32 (32b run) diff --git a/src/vpnweb/vpnweb_i.c b/src/vpnweb/vpnweb_i.c index ab0a02f0..d2cfde27 100644 --- a/src/vpnweb/vpnweb_i.c +++ b/src/vpnweb/vpnweb_i.c @@ -6,7 +6,7 @@ /* File created by MIDL compiler version 7.00.0500 */ -/* at Sun Jul 26 15:00:08 2015 +/* at Tue Sep 15 09:39:43 2015 */ /* Compiler settings for .\vpnweb.idl: Oicf, W1, Zp8, env=Win32 (32b run) diff --git a/src/vpnweb/vpnweb_p.c b/src/vpnweb/vpnweb_p.c index 4754939f..5e5f342f 100644 --- a/src/vpnweb/vpnweb_p.c +++ b/src/vpnweb/vpnweb_p.c @@ -4,7 +4,7 @@ /* File created by MIDL compiler version 7.00.0500 */ -/* at Sun Jul 26 15:00:08 2015 +/* at Tue Sep 15 09:39:43 2015 */ /* Compiler settings for .\vpnweb.idl: Oicf, W1, Zp8, env=Win32 (32b run)