Imported Upstream version 6.4.0.173
Former-commit-id: 1fca76369cd4eee853c2b08d929399851f84c879
This commit is contained in:
parent
9763768dbe
commit
94da8f9655
@ -1 +1 @@
|
||||
bcffcf6b4c5309d813b4b46871ba956735c27879
|
||||
8cf7645085ab82d8e3b442d55bbf12055cd9fdeb
|
@ -1 +1 @@
|
||||
1cef2f5fb1ed63b6ab6623490aeae8d2afeffe53
|
||||
cd7b168922c0782c22d787e2bf5702763e633d1e
|
2
external/bockbuild/packages/gtk-sharp.py
vendored
2
external/bockbuild/packages/gtk-sharp.py
vendored
@ -4,7 +4,7 @@ class GtkSharp212ReleasePackage (Package):
|
||||
Package.__init__(self, 'gtk-sharp',
|
||||
sources=['git://github.com/mono/gtk-sharp.git'],
|
||||
git_branch='gtk-sharp-2-12-branch',
|
||||
revision='2e6bab50c5873674fa7da3102c36f182aa0baf34',
|
||||
revision='6a98cdb3414a760d44eee5bd4b17224a6762d7ad',
|
||||
override_properties={
|
||||
'configure': './bootstrap-2.12 --prefix=%{package_prefix}',
|
||||
}
|
||||
|
@ -56,11 +56,11 @@ namespace System.IO.Tests
|
||||
[PlatformSpecific(TestPlatforms.AnyUnix)]
|
||||
public void DanglingSymlinkCopy()
|
||||
{
|
||||
string dangling_symlink = GetTestFileName();
|
||||
string missing_target = GetTestFileName();
|
||||
string dangling_symlink_new_location = GetTestFileName();
|
||||
string dangling_symlink = GetTestFilePath();
|
||||
string missing_target = GetTestFilePath();
|
||||
string dangling_symlink_new_location = GetTestFilePath();
|
||||
Assert.False(File.Exists(missing_target));
|
||||
Assert.Equal(symlink(missing_target, dangling_symlink), 0);
|
||||
Assert.Equal(0, symlink(missing_target, dangling_symlink));
|
||||
Copy(dangling_symlink, dangling_symlink_new_location);
|
||||
Assert.True(File.Exists(dangling_symlink_new_location)); // File.Exists returns true for dangling symlinks
|
||||
}
|
||||
|
@ -182,11 +182,11 @@ namespace System.IO.Tests
|
||||
[PlatformSpecific(TestPlatforms.AnyUnix)]
|
||||
public void DanglingSymlinkMove()
|
||||
{
|
||||
string dangling_symlink = GetTestFileName();
|
||||
string missing_target = GetTestFileName();
|
||||
string dangling_symlink_new_location = GetTestFileName();
|
||||
string dangling_symlink = GetTestFilePath();
|
||||
string missing_target = GetTestFilePath();
|
||||
string dangling_symlink_new_location = GetTestFilePath();
|
||||
Assert.False(File.Exists(missing_target));
|
||||
Assert.Equal(symlink(missing_target, dangling_symlink), 0);
|
||||
Assert.Equal(0, symlink(missing_target, dangling_symlink));
|
||||
Move(dangling_symlink, dangling_symlink_new_location);
|
||||
Assert.True(File.Exists(dangling_symlink_new_location)); // File.Exists returns true for dangling symlinks
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ static partial class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "6.4.0.170";
|
||||
public const string MonoVersion = "6.4.0.173";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -120,25 +120,21 @@ namespace Mono.Net.Security
|
||||
ServicePointManager.CheckCertificateRevocationList).ConfigureAwait (false);
|
||||
|
||||
status = WebExceptionStatus.Success;
|
||||
|
||||
request.ServicePoint.UpdateClientCertificate (sslStream.InternalLocalCertificate);
|
||||
} catch (Exception ex) {
|
||||
WebConnection.Debug ($"MONO TLS STREAM ERROR: {socket.ID} {socket.CleanedUp} {ex.Message}");
|
||||
if (socket.CleanedUp)
|
||||
status = WebExceptionStatus.RequestCanceled;
|
||||
else if (CertificateValidationFailed)
|
||||
status = WebExceptionStatus.TrustFailure;
|
||||
else
|
||||
status = WebExceptionStatus.SecureChannelFailure;
|
||||
throw;
|
||||
} finally {
|
||||
WebConnection.Debug ($"MONO TLS STREAM CREATE STREAM DONE: {socket.ID} {socket.CleanedUp}");
|
||||
if (CertificateValidationFailed)
|
||||
status = WebExceptionStatus.TrustFailure;
|
||||
|
||||
if (status == WebExceptionStatus.Success)
|
||||
request.ServicePoint.UpdateClientCertificate (sslStream.InternalLocalCertificate);
|
||||
else {
|
||||
request.ServicePoint.UpdateClientCertificate (null);
|
||||
sslStream.Dispose ();
|
||||
sslStream = null;
|
||||
}
|
||||
request.ServicePoint.UpdateClientCertificate (null);
|
||||
sslStream.Dispose ();
|
||||
sslStream = null;
|
||||
throw;
|
||||
}
|
||||
|
||||
try {
|
||||
@ -146,6 +142,7 @@ namespace Mono.Net.Security
|
||||
await sslStream.WriteAsync (tunnel.Data, 0, tunnel.Data.Length, cancellationToken).ConfigureAwait (false);
|
||||
} catch {
|
||||
status = WebExceptionStatus.SendFailure;
|
||||
sslStream.Dispose ();
|
||||
sslStream = null;
|
||||
throw;
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
69db36141ee7598d392ce104784ac4436739b72f
|
||||
3cac0c0b0311b5c6530fbfa54847ac7ef3b06714
|
@ -1 +1 @@
|
||||
ab01f899865bde8b626e9f2b8a1a27d716e5d673
|
||||
0f5c025ed127058a98d60912766ed6065af338a5
|
@ -1 +1 @@
|
||||
5c8dcfa618d5dd948cc81e32dac43d7134ab0a0d
|
||||
1c31b4fe450fae5b1efd90500d11048787540885
|
@ -1 +1 @@
|
||||
3b79f4a1b828157eb520b1dab3775f83638aea7a
|
||||
d352c15274b2f932fe586f0467d0c135b87cd593
|
@ -1 +1 @@
|
||||
95d9adff629742018c7f612156b0388f7e5927b3
|
||||
6516a842c6ea697f5ce485e6c4780fff411505d7
|
@ -1 +1 @@
|
||||
9d4653def9f72effb65325d25cdf475fac1bcaa7
|
||||
511bfbaa05e9e44a924a2880f881f0a03abcc22a
|
@ -1 +1 @@
|
||||
0224456dda5264f488172eab6c1b36f09e0b7df8
|
||||
385139326ccb9f0dd46448e0d1f3b71c5bdd0e4f
|
@ -1 +1 @@
|
||||
374d292eeecf1f65a8e4565a3ac9202f58c03c23
|
||||
a27e5a6d6f249f07571d837cb8ff6789a02bb884
|
@ -1 +1 @@
|
||||
69db36141ee7598d392ce104784ac4436739b72f
|
||||
3cac0c0b0311b5c6530fbfa54847ac7ef3b06714
|
@ -1 +1 @@
|
||||
ab01f899865bde8b626e9f2b8a1a27d716e5d673
|
||||
0f5c025ed127058a98d60912766ed6065af338a5
|
@ -1 +1 @@
|
||||
5c8dcfa618d5dd948cc81e32dac43d7134ab0a0d
|
||||
1c31b4fe450fae5b1efd90500d11048787540885
|
@ -1 +1 @@
|
||||
3b79f4a1b828157eb520b1dab3775f83638aea7a
|
||||
d352c15274b2f932fe586f0467d0c135b87cd593
|
@ -1 +1 @@
|
||||
95d9adff629742018c7f612156b0388f7e5927b3
|
||||
6516a842c6ea697f5ce485e6c4780fff411505d7
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user