Files
tianrunCRM/Assets/BestHTTP/SecureProtocol/crypto/tls/HeartbeatMode.cs
2020-07-09 08:50:24 +08:00

23 lines
528 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
using System;
namespace Org.BouncyCastle.Crypto.Tls
{
/*
* RFC 6520
*/
public abstract class HeartbeatMode
{
public const byte peer_allowed_to_send = 1;
public const byte peer_not_allowed_to_send = 2;
public static bool IsValid(byte heartbeatMode)
{
return heartbeatMode >= peer_allowed_to_send && heartbeatMode <= peer_not_allowed_to_send;
}
}
}
#endif