HeartbeatMode
namespace Org.BouncyCastle.Tls
{
public abstract class HeartbeatMode
{
public const short peer_allowed_to_send = 1;
public const short peer_not_allowed_to_send = 2;
public static string GetName(short heartbeatMode)
{
switch (heartbeatMode) {
case 1:
return "peer_allowed_to_send";
case 2:
return "peer_not_allowed_to_send";
default:
return "UNKNOWN";
}
}
public static string GetText(short heartbeatMode)
{
return GetName(heartbeatMode) + "(" + heartbeatMode.ToString() + ")";
}
public static bool IsValid(short heartbeatMode)
{
if (heartbeatMode >= 1)
return heartbeatMode <= 2;
return false;
}
}
}