blob: a0abb0fe3720c3c18184b8bc931ac778afd3b136 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System;
namespace Org.BouncyCastle.Tls
{
public sealed class RecordPreview
{
private readonly int recordSize;
private readonly int contentLimit;
internal static RecordPreview CombineAppData(RecordPreview a, RecordPreview b)
{
return new RecordPreview(a.RecordSize + b.RecordSize, a.ContentLimit + b.ContentLimit);
}
internal static RecordPreview ExtendRecordSize(RecordPreview a, int recordSize)
{
return new RecordPreview(a.RecordSize + recordSize, a.ContentLimit);
}
internal RecordPreview(int recordSize, int contentLimit)
{
this.recordSize = recordSize;
this.contentLimit = contentLimit;
}
public int ContentLimit
{
get { return contentLimit; }
}
public int RecordSize
{
get { return recordSize; }
}
}
}
|