summary refs log tree commit diff
path: root/crypto/src/tls/TlsHeartbeat.cs
blob: 3f208a86900be1fe1774de46143eac3f1f95fcf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Org.BouncyCastle.Tls
{
    public interface TlsHeartbeat
    {
        byte[] GeneratePayload();

        int IdleMillis { get; }

        int TimeoutMillis { get; }
    }
}