summary refs log tree commit diff
path: root/crypto/src/crypto/tls/AlertLevel.cs
blob: afb04308b9b668e666c3e7d35ace31fc19cae0ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Org.BouncyCastle.Crypto.Tls
{
	/// <summary>
	/// RFC 2246 7.2
	/// </summary>
    public enum AlertLevel : byte
	{
	    warning = 1,
	    fatal = 2,
	}
}