Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Weinfurt <tweinfurt@yahoo.com>2020-02-14 02:07:49 +0300
committerGitHub <noreply@github.com>2020-02-14 02:07:49 +0300
commit844618c70cb99fdabbd748860f7fbef465884307 (patch)
tree6021e37934543b7b64cba1dcab154234dcae9b44 /src/libraries/System.Net.Security/tests/UnitTests
parent0e0e852e83d5f30dfeeef7ac4999873ee10f9a4b (diff)
use proper IO in ssl handshake (#32013)
* use proper IO in ssl handshake * fix UnitTests/Fakes * feedback from review * rename adapters to SyncSslIOAdapter and AsyncSslIOAdapter * feedback from review
Diffstat (limited to 'src/libraries/System.Net.Security/tests/UnitTests')
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
index 4cd25bda736..85eb337a3e1 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
@@ -38,7 +38,7 @@ namespace System.Net.Security
}
private ValueTask WriteAsyncInternal<TWriteAdapter>(TWriteAdapter writeAdapter, ReadOnlyMemory<byte> buffer)
- where TWriteAdapter : struct, ISslWriteAdapter => default;
+ where TWriteAdapter : struct, ISslIOAdapter => default;
private ValueTask<int> ReadAsyncInternal<TReadAdapter>(TReadAdapter adapter, Memory<byte> buffer) => default;