예제 #1
0
 public ClientSettings(List <IPacket> packetTable, bool useSSL, ServerCertificateIdentity?serverIdentity = null)
     : base(packetTable, useSSL)
 {
     if (serverIdentity != null)
     {
         SSLServerCertIdentity = (ServerCertificateIdentity)serverIdentity;
     }
 }
예제 #2
0
파일: OptionSet.cs 프로젝트: Numbers11/uNet
 public ClientSettings(List<IPacket> packetTable, bool useSSL, ServerCertificateIdentity? serverIdentity = null)
     : base(packetTable, useSSL)
 {
     if(serverIdentity != null)
         SSLServerCertIdentity = (ServerCertificateIdentity)serverIdentity;
 }