Package org.bouncycastle.tls
Class DTLSRecordFlags
- java.lang.Object
-
- org.bouncycastle.tls.DTLSRecordFlags
-
public abstract class DTLSRecordFlags extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
IS_NEWEST
The record is newer (by epoch and sequence number) than any record received previously.static int
NONE
static int
USES_CONNECTION_ID
The record includes the (valid) connection ID (RFC 9146) for this connection.
-
Constructor Summary
Constructors Constructor Description DTLSRecordFlags()
-
-
-
Field Detail
-
NONE
public static final int NONE
- See Also:
- Constant Field Values
-
IS_NEWEST
public static final int IS_NEWEST
The record is newer (by epoch and sequence number) than any record received previously.- See Also:
- Constant Field Values
-
USES_CONNECTION_ID
public static final int USES_CONNECTION_ID
The record includes the (valid) connection ID (RFC 9146) for this connection.- See Also:
- Constant Field Values
-
-