7 lines
159 B
C#
7 lines
159 B
C#
namespace Org.BouncyCastle.Crypto.Tls;
|
|
|
|
internal interface DtlsHandshakeRetransmit
|
|
{
|
|
void ReceivedHandshakeRecord(int epoch, byte[] buf, int off, int len);
|
|
}
|