-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
213 changed files
with
2,549 additions
and
1,497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"Version": "3.3.454", | ||
"BumpTime": "2024-01-18T10:59:43.8825171Z", | ||
"Version": "3.3.462", | ||
"BumpTime": "2024-02-04T11:13:50.9100381Z", | ||
"Prerelease": false, | ||
"DeprecatedVersion": "3.0.416" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System.Net; | ||
using VpnHood.Common.Converters; | ||
|
||
namespace VpnHood.Test; | ||
|
||
internal class TestConstants | ||
{ | ||
public const int DefaultTimeout = 30000; | ||
public static Uri HttpsUri1 => new("https://www.quad9.net/"); | ||
public static Uri HttpsUri2 => new("https://www.google.com/"); | ||
public static IPEndPoint NsEndPoint1 => IPEndPoint.Parse("1.1.1.1:53"); | ||
public static IPEndPoint NsEndPoint2 => IPEndPoint.Parse("1.0.0.1:53"); | ||
public static IPEndPoint TcpEndPoint1 => IPEndPoint.Parse("198.18.0.1:80"); | ||
public static IPEndPoint TcpEndPoint2 => IPEndPoint.Parse("198.18.0.2:80"); | ||
public static IPEndPoint HttpsEndPoint1 => IPEndPoint.Parse("198.18.0.1:3030"); | ||
public static IPEndPoint HttpsEndPoint2 => IPEndPoint.Parse("198.18.0.2:3030"); | ||
public static IPEndPoint UdpV4EndPoint1 => IPEndPoint.Parse("198.18.10.1:63100"); | ||
public static IPEndPoint UdpV4EndPoint2 => IPEndPoint.Parse("198.18.10.2:63101"); | ||
public static IPEndPoint UdpV6EndPoint1 => IPEndPoint.Parse("[2001:4860:4866::2223]:63100"); | ||
public static IPEndPoint UdpV6EndPoint2 => IPEndPoint.Parse("[2001:4860:4866::2223]:63101"); | ||
public static IPAddress PingV4Address1 => IPAddress.Parse("198.18.20.1"); | ||
public static IPAddress PingV4Address2 => IPAddress.Parse("198.18.20.2"); | ||
public static IPAddress PingV6Address1 => IPAddress.Parse("2001:4860:4866::2200"); | ||
public static Uri InvalidUri => new("https://DBBC5764-D452-468F-8301-4B315507318F.zz"); | ||
public static IPAddress InvalidIp => IPAddress.Parse("198.18.255.1"); | ||
public static IPEndPoint InvalidEp => IPEndPointConverter.Parse("198.18.255.2:9999"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.