14 references to DirectTlsEndpoint
Microsoft.AspNetCore.Server.Kestrel.Core (3)
DirectTlsEndpoint.cs (3)
25
/// Initializes a new <see cref="
DirectTlsEndpoint
"/> with a default <see cref="DirectTlsEndpointOptions"/>.
35
/// Initializes a new <see cref="
DirectTlsEndpoint
"/> with the specified TLS options.
48
/// Initializes a new <see cref="
DirectTlsEndpoint
"/> from an existing <see cref="IPEndPoint"/> with the specified TLS options.
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (10)
DirectTlsEndpointProtocolsSetup.cs (2)
10
/// Copies each <see cref="
DirectTlsEndpoint
"/>'s configured <see cref="ListenOptions.Protocols"/> onto the
23
if (listenOptions.EndPoint is
DirectTlsEndpoint
directTlsEndpoint)
DirectTlsTransportFactory.cs (5)
21
/// A factory for DirectTls (native, fd-bound OpenSSL) connections. Binds only <see cref="
DirectTlsEndpoint
"/>
64
if (endpoint is not
DirectTlsEndpoint
directTlsEndpoint)
67
$"The DirectTls transport only binds {nameof(
DirectTlsEndpoint
)} endpoints.");
76
$"A server certificate is required for a {nameof(
DirectTlsEndpoint
)}. Set " +
188
return endpoint is
DirectTlsEndpoint
;
DirectTlsTransportOptions.cs (1)
15
/// <see cref="
DirectTlsEndpoint
"/> / <see cref="DirectTlsEndpointOptions"/>; this type holds only the
WebHostBuilderDirectTlsExtensions.cs (2)
25
/// Kestrel transport. Endpoints bound with a <see cref="
DirectTlsEndpoint
"/> are served by this transport;
32
/// <see cref="
DirectTlsEndpoint
"/> before the default transport.
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
SocketTransportFactory.cs (1)
52
DirectTlsEndpoint
_ => false,