org.bouncycastle.tls.RecordPreview Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
package org.bouncycastle.tls;
public final class RecordPreview
{
private final int recordSize;
private final int applicationDataLimit;
static RecordPreview combine(RecordPreview a, RecordPreview b)
{
return new RecordPreview(
a.getRecordSize() + b.getRecordSize(),
a.getApplicationDataLimit() + b.getApplicationDataLimit());
}
RecordPreview(int recordSize, int applicationDataLimit)
{
this.recordSize = recordSize;
this.applicationDataLimit = applicationDataLimit;
}
public int getApplicationDataLimit()
{
return applicationDataLimit;
}
public int getRecordSize()
{
return recordSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy