Files
JJBB/Assets/Plugins/Best HTTP/Source/SecureProtocol/crypto/tls/HeartbeatMode.cs

23 lines
576 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.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;
}
}
}
#pragma warning restore
#endif