libcoap 4.3.5-develop-19cef11
|
Internal API for handling Sessions. More...
Data Structures | |
struct | coap_addr_hash_t |
Only used for servers for hashing incoming packets. More... | |
struct | coap_session_t |
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (server). More... | |
struct | coap_endpoint_t |
Abstraction of virtual endpoint that can be attached to coap_context_t. More... | |
Macros | |
#define | COAP_SESSION_REF(s) ((s)->ref |
#define | COAP_ACK_TIMEOUT(s) ((s)->ack_timeout) |
#define | COAP_ACK_RANDOM_FACTOR(s) ((s)->ack_random_factor) |
#define | COAP_MAX_RETRANSMIT(s) ((s)->max_retransmit) |
#define | COAP_NSTART(s) ((s)->nstart) |
#define | COAP_DEFAULT_LEISURE(s) ((s)->default_leisure) |
#define | COAP_PROBING_RATE(s) ((s)->probing_rate) |
#define | COAP_MAX_PAYLOADS(s) ((s)->max_payloads) |
#define | COAP_NON_MAX_RETRANSMIT(s) ((s)->non_max_retransmit) |
#define | COAP_NON_TIMEOUT(s) ((s)->non_timeout) |
#define | COAP_NON_TIMEOUT_TICKS(s) |
#define | COAP_NON_RECEIVE_TIMEOUT(s) ((s)->non_receive_timeout) |
#define | COAP_NON_PROBING_WAIT_BASE(s) ((s)->non_probing_wait_base) |
#define | COAP_NON_PARTIAL_TIMEOUT(s) ((s)->non_partial_timeout) |
#define | COAP_DEFAULT_LEISURE_TICKS(s) |
The DEFAULT_LEISURE definition for the session (s). More... | |
#define | COAP_MAX_TRANSMIT_SPAN(s) |
The MAX_TRANSMIT_SPAN definition for the session (s). More... | |
#define | COAP_MAX_TRANSMIT_WAIT(s) |
The MAX_TRANSMIT_WAIT definition for the session (s). More... | |
#define | COAP_MAX_TRANSMIT_WAIT_TICKS(s) (COAP_MAX_TRANSMIT_WAIT(s) * COAP_TICKS_PER_SECOND) |
#define | COAP_PROCESSING_DELAY(s) |
The PROCESSING_DELAY definition for the session (s). More... | |
#define | COAP_MAX_RTT(s) ((2 * COAP_DEFAULT_MAX_LATENCY) + COAP_PROCESSING_DELAY(s)) |
The MAX_RTT definition for the session (s). More... | |
#define | COAP_EXCHANGE_LIFETIME(s) |
The EXCHANGE_LIFETIME definition for the session (s). More... | |
#define | COAP_NON_LIFETIME(s) (COAP_MAX_TRANSMIT_SPAN(s) + COAP_DEFAULT_MAX_LATENCY) |
The NON_LIFETIME definition for the session (s). More... | |
#define | COAP_NON_RECEIVE_TIMEOUT_TICKS(s) |
The NON_RECEIVE_TIMEOUT definition for the session (s). More... | |
#define | COAP_NON_PROBING_WAIT(s) |
The NON_PROBING_WAIT definition for the session (s). More... | |
#define | COAP_NON_PROBING_WAIT_TICKS(s) |
#define | COAP_NON_PARTIAL_TIMEOUT_TICKS(s) |
The NON_PARTIAL_TIMEOUT definition for the session (s). More... | |
#define | COAP_NON_TIMEOUT_RANDOM(s) coap_get_non_timeout_random(s) |
The NON_TIMEOUT_RANDOM definition for the session (s). More... | |
Typedefs | |
typedef enum coap_ext_token_check_t | coap_ext_token_check_t |
coap_ext_token_check_t values More... | |
Enumerations | |
enum | COAP_OSCORE_B_2_STEP { COAP_OSCORE_B_2_NONE = 0 , COAP_OSCORE_B_2_STEP_1 , COAP_OSCORE_B_2_STEP_2 , COAP_OSCORE_B_2_STEP_3 , COAP_OSCORE_B_2_STEP_4 , COAP_OSCORE_B_2_STEP_5 } |
enum | coap_ext_token_check_t { COAP_EXT_T_NOT_CHECKED = 0 , COAP_EXT_T_CHECKED , COAP_EXT_T_CHECKING } |
coap_ext_token_check_t values More... | |
Functions | |
coap_fixed_point_t | coap_multi_fixed_fixed (coap_fixed_point_t fp1, coap_fixed_point_t fp2) |
coap_fixed_point_t | coap_multi_fixed_uint (coap_fixed_point_t fp1, uint32_t u2) |
coap_fixed_point_t | coap_add_fixed_fixed (coap_fixed_point_t fp1, coap_fixed_point_t fp2) |
coap_fixed_point_t | coap_add_fixed_uint (coap_fixed_point_t fp1, uint32_t u2) |
coap_fixed_point_t | coap_sub_fixed_uint (coap_fixed_point_t fp1, uint32_t u2) |
coap_fixed_point_t | coap_div_fixed_uint (coap_fixed_point_t fp1, uint32_t u2) |
coap_fixed_point_t | coap_get_non_timeout_random (coap_session_t *session) |
coap_tick_t | coap_get_non_timeout_random_ticks (coap_session_t *session) |
void | coap_session_send_csm (coap_session_t *session) |
Notify session transport has just connected and CSM exchange can now start. More... | |
void | coap_session_connected (coap_session_t *session) |
Notify session that it has just connected or reconnected. More... | |
void | coap_session_disconnected_lkd (coap_session_t *session, coap_nack_reason_t reason) |
Notify session that it has failed. More... | |
coap_mid_t | coap_session_send_ping_lkd (coap_session_t *session) |
Send a ping message for the session. More... | |
int | coap_session_refresh_psk_hint (coap_session_t *session, const coap_bin_const_t *psk_hint) |
Refresh the session's current Identity Hint (PSK). More... | |
int | coap_session_refresh_psk_key (coap_session_t *session, const coap_bin_const_t *psk_key) |
Refresh the session's current pre-shared key (PSK). More... | |
int | coap_session_refresh_psk_identity (coap_session_t *session, const coap_bin_const_t *psk_identity) |
Refresh the session's current pre-shared identity (PSK). More... | |
coap_session_t * | coap_new_server_session (coap_context_t *ctx, coap_endpoint_t *ep, void *extra) |
Creates a new server session for the specified endpoint. More... | |
void | coap_session_establish (coap_session_t *session) |
Layer function interface for layer below session accept/connect being established. More... | |
coap_session_t * | coap_session_reference_lkd (coap_session_t *session) |
Increment reference counter on a session. More... | |
void | coap_session_release_lkd (coap_session_t *session) |
Decrement reference counter on a session. More... | |
ssize_t | coap_session_send_pdu (coap_session_t *session, coap_pdu_t *pdu) |
Send a pdu according to the session's protocol. More... | |
ssize_t | coap_session_delay_pdu (coap_session_t *session, coap_pdu_t *pdu, coap_queue_t *node) |
coap_session_t * | coap_endpoint_get_session (coap_endpoint_t *endpoint, const coap_packet_t *packet, coap_tick_t now) |
Lookup the server session for the packet received on an endpoint, or create a new one. More... | |
coap_endpoint_t * | coap_new_endpoint_lkd (coap_context_t *context, const coap_address_t *listen_addr, coap_proto_t proto) |
Create a new endpoint for communicating with peers. More... | |
void | coap_free_endpoint_lkd (coap_endpoint_t *endpoint) |
Release an endpoint and all the structures associated with it. More... | |
size_t | coap_session_max_pdu_rcv_size (const coap_session_t *session) |
Get maximum acceptable receive PDU size. More... | |
size_t | coap_session_max_pdu_size_lkd (const coap_session_t *session) |
Get maximum acceptable PDU size. More... | |
coap_session_t * | coap_new_client_session_lkd (coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto) |
Creates a new client session to the designated server. More... | |
coap_session_t * | coap_new_client_session_pki_lkd (coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_pki_t *setup_data) |
Creates a new client session to the designated server with PKI credentials. More... | |
coap_session_t * | coap_new_client_session_psk_lkd (coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, const char *identity, const uint8_t *key, unsigned key_len) |
Creates a new client session to the designated server with PSK credentials. More... | |
coap_session_t * | coap_new_client_session_psk2_lkd (coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_cpsk_t *setup_data) |
Creates a new client session to the designated server with PSK credentials. More... | |
void | coap_session_free (coap_session_t *session) |
void | coap_session_mfree (coap_session_t *session) |
void | coap_read_session (coap_context_t *ctx, coap_session_t *session, coap_tick_t now) |
void | coap_connect_session (coap_session_t *session, coap_tick_t now) |
void | coap_handle_nack (coap_session_t *session, coap_pdu_t *sent, const coap_nack_reason_t reason, const coap_mid_t mid) |
Internal API for handling Sessions.
#define COAP_ACK_RANDOM_FACTOR | ( | s | ) | ((s)->ack_random_factor) |
Definition at line 602 of file coap_session_internal.h.
#define COAP_ACK_TIMEOUT | ( | s | ) | ((s)->ack_timeout) |
Definition at line 601 of file coap_session_internal.h.
#define COAP_DEFAULT_LEISURE | ( | s | ) | ((s)->default_leisure) |
Definition at line 605 of file coap_session_internal.h.
#define COAP_DEFAULT_LEISURE_TICKS | ( | s | ) |
The DEFAULT_LEISURE definition for the session (s).
RFC 7252, Section 4.8 Initial value 5.0 seconds
Definition at line 624 of file coap_session_internal.h.
#define COAP_EXCHANGE_LIFETIME | ( | s | ) |
The EXCHANGE_LIFETIME definition for the session (s).
RFC 7252, Section 4.8.2 Calculation of EXCHANGE_LIFETIME MAX_TRANSMIT_SPAN + (2 * MAX_LATENCY) + PROCESSING_DELAY
Definition at line 681 of file coap_session_internal.h.
#define COAP_MAX_PAYLOADS | ( | s | ) | ((s)->max_payloads) |
Definition at line 608 of file coap_session_internal.h.
#define COAP_MAX_RETRANSMIT | ( | s | ) | ((s)->max_retransmit) |
Definition at line 603 of file coap_session_internal.h.
#define COAP_MAX_RTT | ( | s | ) | ((2 * COAP_DEFAULT_MAX_LATENCY) + COAP_PROCESSING_DELAY(s)) |
The MAX_RTT definition for the session (s).
RFC 7252, Section 4.8.2 Calculation of MAX_RTT (2 * MAX_LATENCY) + PROCESSING_DELAY
Definition at line 672 of file coap_session_internal.h.
#define COAP_MAX_TRANSMIT_SPAN | ( | s | ) |
The MAX_TRANSMIT_SPAN definition for the session (s).
RFC 7252, Section 4.8.2 Calculation of MAX_TRAMSMIT_SPAN ACK_TIMEOUT * ((2 ** (MAX_RETRANSMIT)) - 1) * ACK_RANDOM_FACTOR
Definition at line 633 of file coap_session_internal.h.
#define COAP_MAX_TRANSMIT_WAIT | ( | s | ) |
The MAX_TRANSMIT_WAIT definition for the session (s).
RFC 7252, Section 4.8.2 Calculation of MAX_TRAMSMIT_WAIT ACK_TIMEOUT * ((2 ** (MAX_RETRANSMIT + 1)) - 1) * ACK_RANDOM_FACTOR
Definition at line 646 of file coap_session_internal.h.
#define COAP_MAX_TRANSMIT_WAIT_TICKS | ( | s | ) | (COAP_MAX_TRANSMIT_WAIT(s) * COAP_TICKS_PER_SECOND) |
Definition at line 653 of file coap_session_internal.h.
#define COAP_NON_LIFETIME | ( | s | ) | (COAP_MAX_TRANSMIT_SPAN(s) + COAP_DEFAULT_MAX_LATENCY) |
The NON_LIFETIME definition for the session (s).
RFC 7252, Section 4.8.2 Calculation of NON_LIFETIME MAX_TRANSMIT_SPAN + MAX_LATENCY
Definition at line 691 of file coap_session_internal.h.
#define COAP_NON_MAX_RETRANSMIT | ( | s | ) | ((s)->non_max_retransmit) |
Definition at line 609 of file coap_session_internal.h.
#define COAP_NON_PARTIAL_TIMEOUT | ( | s | ) | ((s)->non_partial_timeout) |
Definition at line 616 of file coap_session_internal.h.
#define COAP_NON_PARTIAL_TIMEOUT_TICKS | ( | s | ) |
The NON_PARTIAL_TIMEOUT definition for the session (s).
RFC9177 Section 6.2 Initial value EXCHANGE_LIFETIME (247 seconds)
Definition at line 726 of file coap_session_internal.h.
#define COAP_NON_PROBING_WAIT | ( | s | ) |
The NON_PROBING_WAIT definition for the session (s).
RFC9177 Section 6.2 NON_PROBING_WAIT = NON_TIMEOUT * ((2 ** NON_MAX_RETRANSMIT) - 1) * ACK_RANDOM_FACTOR + (2 * MAX_LATENCY) + NON_TIMEOUT_RANDOM Default is 247-248 seconds
Definition at line 712 of file coap_session_internal.h.
#define COAP_NON_PROBING_WAIT_BASE | ( | s | ) | ((s)->non_probing_wait_base) |
Definition at line 615 of file coap_session_internal.h.
#define COAP_NON_PROBING_WAIT_TICKS | ( | s | ) |
Definition at line 716 of file coap_session_internal.h.
#define COAP_NON_RECEIVE_TIMEOUT | ( | s | ) | ((s)->non_receive_timeout) |
Definition at line 614 of file coap_session_internal.h.
#define COAP_NON_RECEIVE_TIMEOUT_TICKS | ( | s | ) |
The NON_RECEIVE_TIMEOUT definition for the session (s).
RFC9177 Section 6.2 2 * NON_TIMEOUT
Definition at line 700 of file coap_session_internal.h.
#define COAP_NON_TIMEOUT | ( | s | ) | ((s)->non_timeout) |
Definition at line 610 of file coap_session_internal.h.
#define COAP_NON_TIMEOUT_RANDOM | ( | s | ) | coap_get_non_timeout_random(s) |
The NON_TIMEOUT_RANDOM definition for the session (s).
RFC9177 Section 6.2 Default is 2-3 seconds
Definition at line 736 of file coap_session_internal.h.
#define COAP_NON_TIMEOUT_TICKS | ( | s | ) |
Definition at line 611 of file coap_session_internal.h.
#define COAP_NSTART | ( | s | ) | ((s)->nstart) |
Definition at line 604 of file coap_session_internal.h.
#define COAP_PROBING_RATE | ( | s | ) | ((s)->probing_rate) |
Definition at line 606 of file coap_session_internal.h.
#define COAP_PROCESSING_DELAY | ( | s | ) |
The PROCESSING_DELAY definition for the session (s).
RFC 7252, Section 4.8.2 Calculation of PROCESSING_DELAY PROCESSING_DELAY set to ACK_TIMEOUT
Definition at line 662 of file coap_session_internal.h.
#define COAP_SESSION_REF | ( | s | ) | ((s)->ref |
Definition at line 598 of file coap_session_internal.h.
typedef enum coap_ext_token_check_t coap_ext_token_check_t |
coap_ext_token_check_t values
coap_ext_token_check_t values
Enumerator | |
---|---|
COAP_EXT_T_NOT_CHECKED | Not checked. |
COAP_EXT_T_CHECKED | Token size valid. |
COAP_EXT_T_CHECKING | Token size check request sent. |
Definition at line 58 of file coap_session_internal.h.
enum COAP_OSCORE_B_2_STEP |
Enumerator | |
---|---|
COAP_OSCORE_B_2_NONE | |
COAP_OSCORE_B_2_STEP_1 | |
COAP_OSCORE_B_2_STEP_2 | |
COAP_OSCORE_B_2_STEP_3 | |
COAP_OSCORE_B_2_STEP_4 | |
COAP_OSCORE_B_2_STEP_5 |
Definition at line 46 of file coap_session_internal.h.
coap_fixed_point_t coap_add_fixed_fixed | ( | coap_fixed_point_t | fp1, |
coap_fixed_point_t | fp2 | ||
) |
Definition at line 50 of file coap_session.c.
coap_fixed_point_t coap_add_fixed_uint | ( | coap_fixed_point_t | fp1, |
uint32_t | u2 | ||
) |
Definition at line 60 of file coap_session.c.
void coap_connect_session | ( | coap_session_t * | session, |
coap_tick_t | now | ||
) |
coap_fixed_point_t coap_div_fixed_uint | ( | coap_fixed_point_t | fp1, |
uint32_t | u2 | ||
) |
Definition at line 76 of file coap_session.c.
coap_session_t * coap_endpoint_get_session | ( | coap_endpoint_t * | endpoint, |
const coap_packet_t * | packet, | ||
coap_tick_t | now | ||
) |
Lookup the server session for the packet received on an endpoint, or create a new one.
endpoint | Active endpoint the packet was received on. |
packet | Received packet. |
now | The current time in ticks. |
NULL
if error. void coap_free_endpoint_lkd | ( | coap_endpoint_t * | endpoint | ) |
Release an endpoint and all the structures associated with it.
Note: This function must be called in the locked state.
endpoint | The endpoint to release. |
coap_fixed_point_t coap_get_non_timeout_random | ( | coap_session_t * | session | ) |
coap_tick_t coap_get_non_timeout_random_ticks | ( | coap_session_t * | session | ) |
void coap_handle_nack | ( | coap_session_t * | session, |
coap_pdu_t * | sent, | ||
const coap_nack_reason_t | reason, | ||
const coap_mid_t | mid | ||
) |
Definition at line 907 of file coap_session.c.
coap_fixed_point_t coap_multi_fixed_fixed | ( | coap_fixed_point_t | fp1, |
coap_fixed_point_t | fp2 | ||
) |
Definition at line 30 of file coap_session.c.
coap_fixed_point_t coap_multi_fixed_uint | ( | coap_fixed_point_t | fp1, |
uint32_t | u2 | ||
) |
Definition at line 40 of file coap_session.c.
coap_session_t * coap_new_client_session_lkd | ( | coap_context_t * | ctx, |
const coap_address_t * | local_if, | ||
const coap_address_t * | server, | ||
coap_proto_t | proto | ||
) |
Creates a new client session to the designated server.
Note: This function must be called in the locked state.
ctx | The CoAP context. |
local_if | Address of local interface. It is recommended to use NULL to let the operating system choose a suitable local interface. If an address is specified, the port number should be zero, which means that a free port is automatically selected. |
server | The server's address. If the port number is zero, the default port for the protocol will be used. |
proto | Protocol. |
coap_session_t * coap_new_client_session_pki_lkd | ( | coap_context_t * | ctx, |
const coap_address_t * | local_if, | ||
const coap_address_t * | server, | ||
coap_proto_t | proto, | ||
coap_dtls_pki_t * | setup_data | ||
) |
Creates a new client session to the designated server with PKI credentials.
Note: This function must be called in the locked state.
ctx | The CoAP context. |
local_if | Address of local interface. It is recommended to use NULL to let the operating system choose a suitable local interface. If an address is specified, the port number should be zero, which means that a free port is automatically selected. |
server | The server's address. If the port number is zero, the default port for the protocol will be used. |
proto | CoAP Protocol. |
setup_data | PKI parameters. |
coap_session_t * coap_new_client_session_psk2_lkd | ( | coap_context_t * | ctx, |
const coap_address_t * | local_if, | ||
const coap_address_t * | server, | ||
coap_proto_t | proto, | ||
coap_dtls_cpsk_t * | setup_data | ||
) |
Creates a new client session to the designated server with PSK credentials.
Note: This function must be called in the locked state.
ctx | The CoAP context. |
local_if | Address of local interface. It is recommended to use NULL to let the operating system choose a suitable local interface. If an address is specified, the port number should be zero, which means that a free port is automatically selected. |
server | The server's address. If the port number is zero, the default port for the protocol will be used. |
proto | CoAP Protocol. |
setup_data | PSK parameters. |
coap_session_t * coap_new_client_session_psk_lkd | ( | coap_context_t * | ctx, |
const coap_address_t * | local_if, | ||
const coap_address_t * | server, | ||
coap_proto_t | proto, | ||
const char * | identity, | ||
const uint8_t * | key, | ||
unsigned | key_len | ||
) |
Creates a new client session to the designated server with PSK credentials.
Note: This function must be called in the locked state.
ctx | The CoAP context. |
local_if | Address of local interface. It is recommended to use NULL to let the operating system choose a suitable local interface. If an address is specified, the port number should be zero, which means that a free port is automatically selected. |
server | The server's address. If the port number is zero, the default port for the protocol will be used. |
proto | Protocol. |
identity | PSK client identity |
key | PSK shared key |
key_len | PSK shared key length |
coap_endpoint_t * coap_new_endpoint_lkd | ( | coap_context_t * | context, |
const coap_address_t * | listen_addr, | ||
coap_proto_t | proto | ||
) |
Create a new endpoint for communicating with peers.
Note: This function must be called in the locked state.
context | The coap context that will own the new endpoint, |
listen_addr | Address the endpoint will listen for incoming requests on or originate outgoing requests from. Use NULL to specify that no incoming request will be accepted and use a random endpoint. |
proto | Protocol used on this endpoint, |
NULL
on failure. coap_session_t * coap_new_server_session | ( | coap_context_t * | ctx, |
coap_endpoint_t * | ep, | ||
void * | extra | ||
) |
Creates a new server session for the specified endpoint.
ctx | The CoAP context. |
ep | An endpoint where an incoming connection request is pending. |
extra | Available for use by any underlying network stack. |
void coap_read_session | ( | coap_context_t * | ctx, |
coap_session_t * | session, | ||
coap_tick_t | now | ||
) |
Definition at line 2225 of file coap_net.c.
void coap_session_connected | ( | coap_session_t * | session | ) |
Notify session that it has just connected or reconnected.
session | The CoAP session. |
Definition at line 818 of file coap_session.c.
ssize_t coap_session_delay_pdu | ( | coap_session_t * | session, |
coap_pdu_t * | pdu, | ||
coap_queue_t * | node | ||
) |
Definition at line 698 of file coap_session.c.
void coap_session_disconnected_lkd | ( | coap_session_t * | session, |
coap_nack_reason_t | reason | ||
) |
Notify session that it has failed.
This cleans up any outstanding / queued transmissions, observations etc..
Note: This function must be called in the locked state.
session | The CoAP session. |
reason | The reason why the session was disconnected. |
Definition at line 939 of file coap_session.c.
void coap_session_establish | ( | coap_session_t * | session | ) |
Layer function interface for layer below session accept/connect being established.
This function initiates a CSM request for reliable protocols, or coap_session_connect() for un-reliable protocols.
session | Session that the lower layer accept/connect was done on. |
Definition at line 1419 of file coap_session.c.
void coap_session_free | ( | coap_session_t * | session | ) |
Definition at line 568 of file coap_session.c.
size_t coap_session_max_pdu_rcv_size | ( | const coap_session_t * | session | ) |
Get maximum acceptable receive PDU size.
session | The CoAP session. |
Definition at line 629 of file coap_session.c.
size_t coap_session_max_pdu_size_lkd | ( | const coap_session_t * | session | ) |
Get maximum acceptable PDU size.
Note: This function must be called in the locked state.
session | The CoAP session. |
Definition at line 655 of file coap_session.c.
void coap_session_mfree | ( | coap_session_t * | session | ) |
Definition at line 488 of file coap_session.c.
coap_session_t * coap_session_reference_lkd | ( | coap_session_t * | session | ) |
Increment reference counter on a session.
Note: This function must be called in the locked state.
session | The CoAP session. |
Definition at line 356 of file coap_session.c.
int coap_session_refresh_psk_hint | ( | coap_session_t * | session, |
const coap_bin_const_t * | psk_hint | ||
) |
Refresh the session's current Identity Hint (PSK).
Note: A copy of psk_hint
is maintained in the session by libcoap.
session | The current coap_session_t object. |
psk_hint | If NULL, the Identity Hint will revert to the initial Identity Hint used at session setup. |
1
if successful, else 0
. Definition at line 1689 of file coap_session.c.
int coap_session_refresh_psk_identity | ( | coap_session_t * | session, |
const coap_bin_const_t * | psk_identity | ||
) |
Refresh the session's current pre-shared identity (PSK).
Note: A copy of psk_identity
is maintained in the session by libcoap.
session | The current coap_session_t object. |
psk_identity | If NULL, the pre-shared identity will revert to the initial pre-shared key used as session setup. |
1
if successful, else 0
. Definition at line 1746 of file coap_session.c.
int coap_session_refresh_psk_key | ( | coap_session_t * | session, |
const coap_bin_const_t * | psk_key | ||
) |
Refresh the session's current pre-shared key (PSK).
Note: A copy of psk_key
is maintained in the session by libcoap.
session | The current coap_session_t object. |
psk_key | If NULL, the pre-shared key will revert to the initial pre-shared key used at session setup. |
1
if successful, else 0
. Definition at line 1718 of file coap_session.c.
void coap_session_release_lkd | ( | coap_session_t * | session | ) |
Decrement reference counter on a session.
Note that the session may be deleted as a result and should not be used after this call.
Note: This function must be called in the locked state.
session | The CoAP session. |
Definition at line 376 of file coap_session.c.
void coap_session_send_csm | ( | coap_session_t * | session | ) |
Notify session transport has just connected and CSM exchange can now start.
session | The CoAP session. |
Definition at line 739 of file coap_session.c.
ssize_t coap_session_send_pdu | ( | coap_session_t * | session, |
coap_pdu_t * | pdu | ||
) |
Send a pdu according to the session's protocol.
This function returns the number of bytes that have been transmitted, or a value less than zero on error.
session | Session to send pdu on. |
pdu | The pdu to send. |
Definition at line 1001 of file coap_net.c.
coap_mid_t coap_session_send_ping_lkd | ( | coap_session_t * | session | ) |
Send a ping message for the session.
session | The CoAP session. |
Note: This function must be called in the locked state.
Definition at line 796 of file coap_session.c.
coap_fixed_point_t coap_sub_fixed_uint | ( | coap_fixed_point_t | fp1, |
uint32_t | u2 | ||
) |
Definition at line 68 of file coap_session.c.