This module provides functionality to store and retrieve session information of DTLS connections. More...
This module provides functionality to store and retrieve session information of DTLS connections.
dsm allows to store necessary session information so that not every application has to provide the potentially maximum number of possible session objects. Session storage can be offloaded to this generic module.
\
Files | |
file | dsm.h |
DTLS session management module definition. | |
Macros | |
#define | CONFIG_DSM_PEER_MAX (CONFIG_DTLS_PEER_MAX) |
Maximum number of maintained DTLS sessions (tinyDTLS) | |
Enumerations | |
enum | dsm_state_t { NO_SPACE = -1 , SESSION_STATE_NONE = 0 , SESSION_STATE_HANDSHAKE , SESSION_STATE_ESTABLISHED } |
Session management states. | |
Functions | |
void | dsm_init (void) |
Initialize the DTLS session management. More... | |
dsm_state_t | dsm_store (sock_dtls_t *sock, sock_dtls_session_t *session, dsm_state_t new_state, bool restore) |
Stores a session. More... | |
void | dsm_remove (sock_dtls_t *sock, sock_dtls_session_t *session) |
Removes a session. More... | |
uint8_t | dsm_get_num_maximum_slots (void) |
Returns the maximum number of sessions slots. More... | |
uint8_t | dsm_get_num_available_slots (void) |
Returns the number of available session slots. More... | |
ssize_t | dsm_get_least_recently_used_session (sock_dtls_t *sock, sock_dtls_session_t *session) |
Returns the least recently used session. More... | |
ssize_t dsm_get_least_recently_used_session | ( | sock_dtls_t * | sock, |
sock_dtls_session_t * | session | ||
) |
Returns the least recently used session.
[in] | sock | sock_dtls_t, which the session is created on |
[out] | session | Oldest used session |
uint8_t dsm_get_num_available_slots | ( | void | ) |
Returns the number of available session slots.
uint8_t dsm_get_num_maximum_slots | ( | void | ) |
Returns the maximum number of sessions slots.
void dsm_init | ( | void | ) |
Initialize the DTLS session management.
Must call once before first use.
void dsm_remove | ( | sock_dtls_t * | sock, |
sock_dtls_session_t * | session | ||
) |
Removes a session.
Removes a given session in the internal storage of the session management.
[in] | sock | sock_dtls_t, which the session is created on |
[in] | session | Session to store |
dsm_state_t dsm_store | ( | sock_dtls_t * | sock, |
sock_dtls_session_t * | session, | ||
dsm_state_t | new_state, | ||
bool | restore | ||
) |
Stores a session.
Stores a given session in the internal storage of the session management. If the session is already stored only the state will be updated when the session gets established.
[in] | sock | sock_dtls_t, which the session is created on |
[in] | session | Session to store |
[in] | new_state | New state of the session |
[in] | restore | Indicates, whether the session object should be restored when an already established session is found |