Skip to content

Commit 4e8d421

Browse files
committed
ignore certificate problems in tailing URLs
1 parent c837ad0 commit 4e8d421

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

DebugView++/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define VERSION 1,8,0,5
2-
#define VERSION_STR "1.8.0.5"
1+
#define VERSION 1,8,0,7
2+
#define VERSION_STR "1.8.0.7"

DebugView++/version.wxi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<?define ProductVersion.Major="1" ?>
44
<?define ProductVersion.Minor="8" ?>
55
<?define ProductVersion.Revision="0" ?>
6-
<?define ProductVersion.Build="5" ?>
7-
<?define ProductVersion="1.8.0.5" ?>
6+
<?define ProductVersion.Build="7" ?>
7+
<?define ProductVersion="1.8.0.7" ?>
88
</Include>

plugins/cs/HttpMonitor/Program.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,10 @@ static void Main(string[] args)
201201
Console.WriteLine("URL: " + url);
202202
Console.WriteLine("Monitoring...");
203203

204+
//Trust all certificates
205+
System.Net.ServicePointManager.ServerCertificateValidationCallback =
206+
((sender, certificate, chain, sslPolicyErrors) => true);
207+
204208
Log log = new Log(url);
205209

206210
try

0 commit comments

Comments
 (0)