コード例 #1
0
		protected MonoServerParameters (MonoServerParameters other)
			: base (other)
		{
			if (other.ServerCiphers != null)
				ServerCiphers = new List<CipherSuiteCode> (other.ServerCiphers);
			ExpectedCipher = other.ExpectedCipher;
			ExpectAlert = other.ExpectAlert;
		}
コード例 #2
0
		protected MonoClientAndServerParameters (string identifier, MonoClientParameters clientParameters, MonoServerParameters serverParameters)
			: base (identifier, clientParameters, serverParameters)
		{
		}