Skip to content

Commit 3536ee0

Browse files
committed
Internalize SocketCOnnectionFactory
1 parent f3bec98 commit 3536ee0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/Servers/Kestrel/Transport.Sockets/src/Client/SocketConnectionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets
1818
{
19-
public class SocketConnectionFactory : IConnectionFactory, IAsyncDisposable
19+
internal class SocketConnectionFactory : IConnectionFactory, IAsyncDisposable
2020
{
2121
private readonly SocketTransportOptions _options;
2222
private readonly MemoryPool<byte> _memoryPool;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System.Runtime.CompilerServices;
5+
6+
[assembly: InternalsVisibleTo("http2cat, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]

0 commit comments

Comments
 (0)