blob: 85a0751543529c4b4d5a22734fc0de8908400ff2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>Marker interface to distinguish a TLS server context.</summary>
public interface TlsServerContext
: TlsContext
{
}
}
|