- Initial commit
This commit is contained in:
40
Runtime/3rdParty/BouncyCastle/tls/RecordPreview.cs
vendored
Normal file
40
Runtime/3rdParty/BouncyCastle/tls/RecordPreview.cs
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user