|
|
|
@ -63,7 +63,7 @@ namespace WebSocketSharp.Net
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public ServerSslConfiguration ()
|
|
|
|
public ServerSslConfiguration ()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_enabledSslProtocols = SslProtocols.Default;
|
|
|
|
_enabledSslProtocols = SslProtocols.None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
@ -77,7 +77,7 @@ namespace WebSocketSharp.Net
|
|
|
|
public ServerSslConfiguration (X509Certificate2 serverCertificate)
|
|
|
|
public ServerSslConfiguration (X509Certificate2 serverCertificate)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_serverCert = serverCertificate;
|
|
|
|
_serverCert = serverCertificate;
|
|
|
|
_enabledSslProtocols = SslProtocols.Default;
|
|
|
|
_enabledSslProtocols = SslProtocols.None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
@ -191,7 +191,7 @@ namespace WebSocketSharp.Net
|
|
|
|
/// the protocols used for authentication.
|
|
|
|
/// the protocols used for authentication.
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// <para>
|
|
|
|
/// <para>
|
|
|
|
/// The default value is <see cref="SslProtocols.Default"/>.
|
|
|
|
/// The default value is <see cref="SslProtocols.None"/>.
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// </value>
|
|
|
|
/// </value>
|
|
|
|
public SslProtocols EnabledSslProtocols {
|
|
|
|
public SslProtocols EnabledSslProtocols {
|
|
|
|
|