Files
libraries-tivadar-besthttp/Runtime/3rdParty/BouncyCastle/tls/DtlsHandshakeRetransmit.cs
2026-07-03 05:02:26 +03: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