Fix for pull request #85, modified a few for WebSocketServer.SslConfiguration property
This commit is contained in:
parent
689cc28532
commit
0de32bbacc
@ -29,8 +29,8 @@ namespace Example2
|
|||||||
#endif
|
#endif
|
||||||
/* To provide the secure connection.
|
/* To provide the secure connection.
|
||||||
var cert = ConfigurationManager.AppSettings["ServerCertFile"];
|
var cert = ConfigurationManager.AppSettings["ServerCertFile"];
|
||||||
var password = ConfigurationManager.AppSettings["CertFilePassword"];
|
var passwd = ConfigurationManager.AppSettings["CertFilePassword"];
|
||||||
wssv.Certificate = new X509Certificate2 (cert, password);
|
wssv.SslConfiguration.ServerCertificate = new X509Certificate2 (cert, passwd);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* To provide the HTTP Authentication (Basic/Digest).
|
/* To provide the HTTP Authentication (Basic/Digest).
|
||||||
|
@ -442,15 +442,15 @@ namespace WebSocketSharp.Server
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the SSL configuration used to authenticate the server and optionally the client
|
/// Gets or sets the SSL configuration used to authenticate the server and optionally the client
|
||||||
/// on the secure connection.
|
/// for secure connection.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// A <see cref="ServerSslAuthConfiguration"/> that represents the SSL configuration used to
|
/// A <see cref="ServerSslAuthConfiguration"/> that represents the configuration used to
|
||||||
/// authenticate the server and optionally the client.
|
/// authenticate the server and optionally the client for secure connection.
|
||||||
/// </value>
|
/// </value>
|
||||||
public ServerSslAuthConfiguration SslConfiguration {
|
public ServerSslAuthConfiguration SslConfiguration {
|
||||||
get {
|
get {
|
||||||
return _sslConfig;
|
return _sslConfig ?? (_sslConfig = new ServerSslAuthConfiguration (null));
|
||||||
}
|
}
|
||||||
|
|
||||||
set {
|
set {
|
||||||
|
Loading…
Reference in New Issue
Block a user