| Package | Description |
|---|---|
| org.eclipse.californium.scandium.dtls |
| Modifier and Type | Field and Description |
|---|---|
protected CompressionMethod |
DTLSConnectionState.compressionMethod |
| Modifier and Type | Method and Description |
|---|---|
CompressionMethod |
SessionTicket.getCompressionMethod()
Gets the compression method.
|
CompressionMethod |
ServerHello.getCompressionMethod()
Gets the compression method the server has chosen for the session being negotiated.
|
static CompressionMethod |
CompressionMethod.getMethodByCode(int code) |
static CompressionMethod |
CompressionMethod.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompressionMethod[] |
CompressionMethod.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
List<CompressionMethod> |
ClientHello.getCompressionMethods() |
static List<CompressionMethod> |
CompressionMethod.listFromReader(org.eclipse.californium.elements.util.DatagramReader reader)
Takes a reader and creates the representing list of compression methods.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ClientHello.addCompressionMethod(CompressionMethod compressionMethod) |
static DTLSConnectionState |
DTLSConnectionState.create(CipherSuite cipherSuite,
CompressionMethod compressionMethod,
SecretKey encryptionKey,
SecretIvParameterSpec iv,
SecretKey macKey)
Create connection state and initializes all fields with given values.
|
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
CompressionMethod.listToByteArray(List<CompressionMethod> compressionMethods)
Takes a list of compression methods and creates the representing byte
stream.
|
void |
ClientHello.setCompressionMethods(List<CompressionMethod> compressionMethods) |
| Constructor and Description |
|---|
ServerHello(ProtocolVersion version,
Random random,
SessionId sessionId,
CipherSuite cipherSuite,
CompressionMethod compressionMethod,
HelloExtensions extensions,
InetSocketAddress peerAddress)
Constructs a full ServerHello message.
|
Copyright © 2023 Eclipse Foundation. All rights reserved.