Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tls/DtlsHandshakeRetransmit.cs
2026-06-15 18:18:16 +08:00

16 lines
399 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.IO;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Tls
{
internal interface DtlsHandshakeRetransmit
{
/// <exception cref="IOException"/>
void ReceivedHandshakeRecord(int epoch, byte[] buf, int off, int len);
}
}
#pragma warning restore
#endif