浏览代码

v4.41-9787-rtm

dnobori 2 年之前
父节点
当前提交
5bd7612068

+ 1 - 1
src/Cedar/AzureClient.c

@@ -184,7 +184,7 @@ void AcWaitForRequest(AZURE_CLIENT *ac, SOCK *s, AZURE_PARAM *param)
 
 								SetTimeout(ns, param->DataTimeout);
 
-								if (StartSSLEx(ns, NULL, NULL, true, 0, NULL))
+								if (StartSSLEx(ns, NULL, NULL, true, 0, NULL)) // DO NOT SET SNI Hostname !!
 								{
 									// Check certification
 									char server_cert_hash_str[MAX_SIZE];

+ 7 - 7
src/Cedar/Cedar.h

@@ -129,7 +129,7 @@
 #define	CEDAR_VER					441
 
 // Build Number
-#define	CEDAR_BUILD					9782
+#define	CEDAR_BUILD					9787
 
 // Beta number
 //#define	BETA_NUMBER					3
@@ -148,12 +148,12 @@
 #endif	// BUILD_PLACE
 
 // Specifies the build date
-#define	BUILD_DATE_Y		2022
-#define	BUILD_DATE_M		11
-#define	BUILD_DATE_D		17
-#define	BUILD_DATE_HO		16
-#define	BUILD_DATE_MI		15
-#define	BUILD_DATE_SE		51
+#define	BUILD_DATE_Y		2023
+#define	BUILD_DATE_M		3
+#define	BUILD_DATE_D		14
+#define	BUILD_DATE_HO		10
+#define	BUILD_DATE_MI		40
+#define	BUILD_DATE_SE		41
 
 // Tolerable time difference
 #define	ALLOW_TIMESTAMP_DIFF		(UINT64)(3 * 24 * 60 * 60 * 1000)

+ 3 - 3
src/CurrentBuild.txt

@@ -1,4 +1,4 @@
-BUILD_NUMBER 9782
+BUILD_NUMBER 9787
 VERSION 441
-BUILD_NAME beta
-BUILD_DATE 20221117_161551
+BUILD_NAME rtm
+BUILD_DATE 20230314_104041

+ 42 - 24
src/Mayaqua/Encrypt.c

@@ -2602,28 +2602,38 @@ void AddKeyUsageX509(EXTENDED_KEY_USAGE *ex, int nid)
 		sk_ASN1_OBJECT_push(ex, obj);
 	}
 }
-X509_EXTENSION *NewExtendedKeyUsageForX509()
+X509_EXTENSION *NewExtendedKeyUsageForX509(bool root_cert)
 {
 	EXTENDED_KEY_USAGE *ex = sk_ASN1_OBJECT_new_null();
 	X509_EXTENSION *ret;
 
-	AddKeyUsageX509(ex, NID_server_auth);
-	AddKeyUsageX509(ex, NID_client_auth);
-	AddKeyUsageX509(ex, NID_code_sign);
-	AddKeyUsageX509(ex, NID_email_protect);
-	AddKeyUsageX509(ex, NID_ipsecEndSystem);
-	AddKeyUsageX509(ex, NID_ipsecTunnel);
-	AddKeyUsageX509(ex, NID_ipsecUser);
-	AddKeyUsageX509(ex, NID_time_stamp);
-	AddKeyUsageX509(ex, NID_OCSP_sign);
+	if (root_cert)
+	{
+		AddKeyUsageX509(ex, NID_server_auth);
+		AddKeyUsageX509(ex, NID_client_auth);
+		AddKeyUsageX509(ex, NID_code_sign);
+		AddKeyUsageX509(ex, NID_email_protect);
+		AddKeyUsageX509(ex, NID_ipsecEndSystem);
+		AddKeyUsageX509(ex, NID_ipsecTunnel);
+		AddKeyUsageX509(ex, NID_ipsecUser);
+		AddKeyUsageX509(ex, NID_time_stamp);
+		AddKeyUsageX509(ex, NID_OCSP_sign);
+	}
+	else
+	{
+		AddKeyUsageX509(ex, NID_server_auth);
+		AddKeyUsageX509(ex, NID_client_auth);
+		AddKeyUsageX509(ex, NID_ipsecEndSystem);
+		AddKeyUsageX509(ex, NID_ipsecTunnel);
+		AddKeyUsageX509(ex, NID_ipsecUser);
+	}
 
 	ret = X509V3_EXT_i2d(NID_ext_key_usage, 0, ex);
 
 	sk_ASN1_OBJECT_pop_free(ex, ASN1_OBJECT_free);
 
 	return ret;
-}
-void BitStringSetBit(ASN1_BIT_STRING *str, int bit)
+}void BitStringSetBit(ASN1_BIT_STRING *str, int bit)
 {
 	// Validate arguments
 	if (str == NULL)
@@ -2633,7 +2643,7 @@ void BitStringSetBit(ASN1_BIT_STRING *str, int bit)
 
 	ASN1_BIT_STRING_set_bit(str, bit, 1);
 }
-X509_EXTENSION *NewBasicKeyUsageForX509()
+X509_EXTENSION *NewBasicKeyUsageForX509(bool root_cert)
 {
 	X509_EXTENSION *ret = NULL;
 	ASN1_BIT_STRING *str;
@@ -2641,13 +2651,21 @@ X509_EXTENSION *NewBasicKeyUsageForX509()
 	str = ASN1_BIT_STRING_new();
 	if (str != NULL)
 	{
-		BitStringSetBit(str, 0);	// KU_DIGITAL_SIGNATURE
-		BitStringSetBit(str, 1);	// KU_NON_REPUDIATION
-		BitStringSetBit(str, 2);	// KU_KEY_ENCIPHERMENT
-		BitStringSetBit(str, 3);	// KU_DATA_ENCIPHERMENT
-		//BitStringSetBit(str, 4);	// KU_KEY_AGREEMENT
-		BitStringSetBit(str, 5);	// KU_KEY_CERT_SIGN
-		BitStringSetBit(str, 6);	// KU_CRL_SIGN
+		if (root_cert)
+		{
+			BitStringSetBit(str, 0);	// KU_DIGITAL_SIGNATURE
+			BitStringSetBit(str, 1);	// KU_NON_REPUDIATION
+			BitStringSetBit(str, 2);	// KU_KEY_ENCIPHERMENT
+			BitStringSetBit(str, 3);	// KU_DATA_ENCIPHERMENT
+			//BitStringSetBit(str, 4);	// KU_KEY_AGREEMENT
+			BitStringSetBit(str, 5);	// KU_KEY_CERT_SIGN
+			BitStringSetBit(str, 6);	// KU_CRL_SIGN
+		}
+		else
+		{
+			BitStringSetBit(str, 0);	// KU_DIGITAL_SIGNATURE
+			BitStringSetBit(str, 2);	// KU_KEY_ENCIPHERMENT
+		}
 
 		ret = X509V3_EXT_i2d(NID_key_usage, 0, str);
 
@@ -2771,7 +2789,7 @@ X509 *NewX509Ex(K *pub, K *priv, X *ca, NAME *name, UINT days, X_SERIAL *serial,
 */
 
 	// Basic usage
-	busage = NewBasicKeyUsageForX509();
+	busage = NewBasicKeyUsageForX509(false);
 	if (busage != NULL)
 	{
 		X509_add_ext(x509, busage, -1);
@@ -2779,7 +2797,7 @@ X509 *NewX509Ex(K *pub, K *priv, X *ca, NAME *name, UINT days, X_SERIAL *serial,
 	}
 
 	// EKU
-	eku = NewExtendedKeyUsageForX509();
+	eku = NewExtendedKeyUsageForX509(false);
 	if (eku != NULL)
 	{
 		X509_add_ext(x509, eku, -1);
@@ -2912,7 +2930,7 @@ X509 *NewRootX509(K *pub, K *priv, NAME *name, UINT days, X_SERIAL *serial)
 	X509_EXTENSION_free(ex);
 
 	// Basic usage
-	busage = NewBasicKeyUsageForX509();
+	busage = NewBasicKeyUsageForX509(true);
 	if (busage != NULL)
 	{
 		X509_add_ext(x509, busage, -1);
@@ -2920,7 +2938,7 @@ X509 *NewRootX509(K *pub, K *priv, NAME *name, UINT days, X_SERIAL *serial)
 	}
 
 	// EKU
-	eku = NewExtendedKeyUsageForX509();
+	eku = NewExtendedKeyUsageForX509(true);
 	if (eku != NULL)
 	{
 		X509_add_ext(x509, eku, -1);

+ 2 - 2
src/Neo/Neo.vcproj

@@ -120,7 +120,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes&#x0D;&#x0A;"
+				CommandLine=""
 			/>
 		</Configuration>
 		<Configuration
@@ -225,7 +225,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes&#x0D;&#x0A;&#x0D;&#x0A;"
+				CommandLine=""
 			/>
 		</Configuration>
 	</Configurations>

+ 2 - 2
src/Neo6/Neo6.vcproj

@@ -121,7 +121,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)Neo6_x86.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:0&#x0D;&#x0A;$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)Neo6_x86_win10.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:2&#x0D;&#x0A;"
+				CommandLine=""
 			/>
 		</Configuration>
 		<Configuration
@@ -227,7 +227,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)Neo6_x64.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:0&#x0D;&#x0A;$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)Neo6_x64_win10.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:2&#x0D;&#x0A;"
+				CommandLine=""
 			/>
 		</Configuration>
 	</Configurations>

+ 2 - 2
src/SeLow/SeLow.vcproj

@@ -121,7 +121,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)SeLow_x86.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:0&#x0D;&#x0A;$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)SeLow_x86_win10.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:2"
+				CommandLine=""
 			/>
 		</Configuration>
 		<Configuration
@@ -227,7 +227,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)SeLow_x64.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:0&#x0D;&#x0A;$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)SeLow_x64_win10.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:2"
+				CommandLine=""
 			/>
 		</Configuration>
 	</Configurations>

+ 2 - 2
src/See/See.vcproj

@@ -119,7 +119,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes"
+				CommandLine=""
 			/>
 		</Configuration>
 		<Configuration
@@ -223,7 +223,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes"
+				CommandLine=""
 			/>
 		</Configuration>
 	</Configurations>

+ 2 - 2
src/Wfp/Wfp.vcproj

@@ -121,7 +121,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)pxwfp_x86.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:0&#x0D;&#x0A;$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)pxwfp_x86_win10.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:2&#x0D;&#x0A;"
+				CommandLine=""
 			/>
 		</Configuration>
 		<Configuration
@@ -225,7 +225,7 @@
 			/>
 			<Tool
 				Name="VCPostBuildEventTool"
-				CommandLine="$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)pxwfp_x64.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:0&#x0D;&#x0A;$(SolutionDir)bin\BuildUtil.exe /CMD:SignCode &quot;$(TargetPath)&quot; /DEST:&quot;$(TargetDir)pxwfp_x64_win10.sys&quot; /COMMENT:&quot;VPN Software&quot; /KERNEL:yes /CERTID:0 /SHAMODE:2&#x0D;&#x0A;"
+				CommandLine=""
 			/>
 		</Configuration>
 	</Configurations>

二进制
src/bin/vpnweb.cab


二进制
src/bin/vpnweb.ocx


+ 2 - 2
src/makefiles/freebsd_32bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/freebsd_32bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/freebsd_64bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/freebsd_64bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/linux_32bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/linux_32bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/linux_64bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/linux_64bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/macos_32bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/macos_32bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/macos_64bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/macos_64bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/openbsd_32bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/openbsd_32bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/openbsd_64bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/openbsd_64bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/solaris_32bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/solaris_32bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/solaris_64bit.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 2 - 2
src/makefiles/solaris_64bit_nobits.mak

@@ -1,7 +1,7 @@
 # SoftEther VPN Source Code
 # 
-# Copyright (c) 2012-2022 SoftEther VPN Project at University of Tsukuba, Japan.
-# Copyright (c) 2012-2022 Daiyuu Nobori.
+# Copyright (c) 2012-2023 SoftEther VPN Project at University of Tsukuba, Japan.
+# Copyright (c) 2012-2023 Daiyuu Nobori.
 # All Rights Reserved.
 # 
 # https://www.softether.org/

+ 1 - 1
src/vpnweb/vpnweb.h

@@ -4,7 +4,7 @@
 
 
  /* File created by MIDL compiler version 7.00.0500 */
-/* at Thu Nov 17 16:16:08 2022
+/* at Tue Mar 14 10:40:57 2023
  */
 /* Compiler settings for .\vpnweb.idl:
     Oicf, W1, Zp8, env=Win32 (32b run)

+ 1 - 1
src/vpnweb/vpnweb_i.c

@@ -6,7 +6,7 @@
 
 
  /* File created by MIDL compiler version 7.00.0500 */
-/* at Thu Nov 17 16:16:08 2022
+/* at Tue Mar 14 10:40:57 2023
  */
 /* Compiler settings for .\vpnweb.idl:
     Oicf, W1, Zp8, env=Win32 (32b run)

+ 1 - 1
src/vpnweb/vpnweb_p.c

@@ -4,7 +4,7 @@
 
 
  /* File created by MIDL compiler version 7.00.0500 */
-/* at Thu Nov 17 16:16:08 2022
+/* at Tue Mar 14 10:40:57 2023
  */
 /* Compiler settings for .\vpnweb.idl:
     Oicf, W1, Zp8, env=Win32 (32b run)