libcoap
4.3.0
|
API functions for CoAP Sessions. More...
Data Structures | |
struct | coap_fixed_point_t |
Abstraction of a fixed point number that can be used where necessary instead of a float. More... | |
Macros | |
#define | COAP_PROTO_NOT_RELIABLE(p) ((p)==COAP_PROTO_UDP || (p)==COAP_PROTO_DTLS) |
#define | COAP_PROTO_RELIABLE(p) ((p)==COAP_PROTO_TCP || (p)==COAP_PROTO_TLS) |
Typedefs | |
typedef struct coap_fixed_point_t | coap_fixed_point_t |
Abstraction of a fixed point number that can be used where necessary instead of a float. More... | |
typedef enum coap_session_type_t | coap_session_type_t |
coap_session_type_t values More... | |
typedef enum coap_session_state_t | coap_session_state_t |
coap_session_state_t values More... | |
Enumerations | |
enum | coap_session_type_t { COAP_SESSION_TYPE_NONE = 0 , COAP_SESSION_TYPE_CLIENT , COAP_SESSION_TYPE_SERVER , COAP_SESSION_TYPE_HELLO } |
coap_session_type_t values More... | |
enum | coap_session_state_t { COAP_SESSION_STATE_NONE = 0 , COAP_SESSION_STATE_CONNECTING , COAP_SESSION_STATE_HANDSHAKE , COAP_SESSION_STATE_CSM , COAP_SESSION_STATE_ESTABLISHED } |
coap_session_state_t values More... | |
Functions | |
coap_session_t * | coap_session_reference (coap_session_t *session) |
Increment reference counter on a session. More... | |
void | coap_session_release (coap_session_t *session) |
Decrement reference counter on a session. More... | |
void | coap_session_disconnected (coap_session_t *session, coap_nack_reason_t reason) |
Notify session that it has failed. More... | |
void | coap_session_set_app_data (coap_session_t *session, void *data) |
Stores data with the given session. More... | |
void * | coap_session_get_app_data (const coap_session_t *session) |
Returns any application-specific data that has been stored with session using the function coap_session_set_app_data(). More... | |
const coap_address_t * | coap_session_get_addr_remote (const coap_session_t *session) |
Get the remote IP address from the session. More... | |
const coap_address_t * | coap_session_get_addr_local (const coap_session_t *session) |
Get the local IP address from the session. More... | |
coap_proto_t | coap_session_get_proto (const coap_session_t *session) |
Get the session protocol type. More... | |
coap_session_type_t | coap_session_get_type (const coap_session_t *session) |
Get the session type. More... | |
coap_session_state_t | coap_session_get_state (const coap_session_t *session) |
Get the session state. More... | |
int | coap_session_get_ifindex (const coap_session_t *session) |
Get the session if index. More... | |
void * | coap_session_get_tls (const coap_session_t *session, coap_tls_library_t *tls_lib) |
Get the session TLS security ptr (TLS type dependent) More... | |
coap_context_t * | coap_session_get_context (const coap_session_t *session) |
Get the session context. More... | |
int | coap_session_set_type_client (coap_session_t *session) |
Set the session type to client. More... | |
void | coap_session_set_mtu (coap_session_t *session, unsigned mtu) |
Set the session MTU. More... | |
size_t | coap_session_max_pdu_size (const coap_session_t *session) |
Get maximum acceptable PDU size. More... | |
coap_session_t * | coap_new_client_session (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_psk (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 (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... | |
const coap_bin_const_t * | coap_session_get_psk_hint (const coap_session_t *session) |
Get the server session's current Identity Hint (PSK). More... | |
const coap_bin_const_t * | coap_session_get_psk_key (const coap_session_t *session) |
Get the session's current pre-shared key (PSK). More... | |
coap_session_t * | coap_new_client_session_pki (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... | |
void | coap_session_init_token (coap_session_t *session, size_t length, const uint8_t *token) |
Initializes the token value to use as a starting point. More... | |
void | coap_session_new_token (coap_session_t *session, size_t *length, uint8_t *token) |
Creates a new token for use. More... | |
coap_endpoint_t * | coap_new_endpoint (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_endpoint_set_default_mtu (coap_endpoint_t *endpoint, unsigned mtu) |
Set the endpoint's default MTU. More... | |
void | coap_free_endpoint (coap_endpoint_t *ep) |
API functions for CoAP Sessions.
#define COAP_PROTO_NOT_RELIABLE | ( | p | ) | ((p)==COAP_PROTO_UDP || (p)==COAP_PROTO_DTLS) |
Definition at line 35 of file coap_session.h.
#define COAP_PROTO_RELIABLE | ( | p | ) | ((p)==COAP_PROTO_TCP || (p)==COAP_PROTO_TLS) |
Definition at line 36 of file coap_session.h.
typedef struct coap_fixed_point_t coap_fixed_point_t |
Abstraction of a fixed point number that can be used where necessary instead of a float.
1,000 fractional bits equals one integer
typedef enum coap_session_state_t coap_session_state_t |
coap_session_state_t values
typedef enum coap_session_type_t coap_session_type_t |
coap_session_type_t values
enum coap_session_state_t |
coap_session_state_t values
Enumerator | |
---|---|
COAP_SESSION_STATE_NONE | |
COAP_SESSION_STATE_CONNECTING | |
COAP_SESSION_STATE_HANDSHAKE | |
COAP_SESSION_STATE_CSM | |
COAP_SESSION_STATE_ESTABLISHED |
Definition at line 52 of file coap_session.h.
enum coap_session_type_t |
coap_session_type_t values
Definition at line 41 of file coap_session.h.
void coap_endpoint_set_default_mtu | ( | coap_endpoint_t * | endpoint, |
unsigned | mtu | ||
) |
Set the endpoint's default MTU.
This is the maximum message size that can be sent, excluding IP and UDP overhead.
endpoint | The CoAP endpoint. |
mtu | maximum message size |
Definition at line 1319 of file coap_session.c.
void coap_free_endpoint | ( | coap_endpoint_t * | ep | ) |
coap_session_t* coap_new_client_session | ( | 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.
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. |
Definition at line 898 of file coap_session.c.
coap_session_t* coap_new_client_session_pki | ( | 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.
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. |
Definition at line 1067 of file coap_session.c.
coap_session_t* coap_new_client_session_psk | ( | 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.
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 |
Definition at line 913 of file coap_session.c.
coap_session_t* coap_new_client_session_psk2 | ( | 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.
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. |
Definition at line 940 of file coap_session.c.
coap_endpoint_t* coap_new_endpoint | ( | coap_context_t * | context, |
const coap_address_t * | listen_addr, | ||
coap_proto_t | proto | ||
) |
Create a new endpoint for communicating with peers.
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 |
Definition at line 1229 of file coap_session.c.
void coap_session_disconnected | ( | coap_session_t * | session, |
coap_nack_reason_t | reason | ||
) |
Notify session that it has failed.
This cleans up any outstanding / queued transmissions, observations etc..
session | The CoAP session. |
reason | The reason why the session was disconnected. |
Definition at line 456 of file coap_session.c.
const coap_address_t* coap_session_get_addr_local | ( | const coap_session_t * | session | ) |
Get the local IP address from the session.
session | The CoAP session. |
NULL
on failure. Definition at line 1170 of file coap_session.c.
const coap_address_t* coap_session_get_addr_remote | ( | const coap_session_t * | session | ) |
Get the remote IP address from the session.
session | The CoAP session. |
NULL
on failure. Definition at line 1163 of file coap_session.c.
void* coap_session_get_app_data | ( | const coap_session_t * | session | ) |
Returns any application-specific data that has been stored with session
using the function coap_session_set_app_data().
This function will return NULL
if no data has been stored.
session | The CoAP session. |
NULL
. Definition at line 104 of file coap_session.c.
coap_context_t* coap_session_get_context | ( | const coap_session_t * | session | ) |
Get the session context.
session | The CoAP session. |
Definition at line 1177 of file coap_session.c.
int coap_session_get_ifindex | ( | const coap_session_t * | session | ) |
Get the session if index.
session | The CoAP session. |
-1
on error. Definition at line 1214 of file coap_session.c.
coap_proto_t coap_session_get_proto | ( | const coap_session_t * | session | ) |
Get the session protocol type.
session | The CoAP session. |
Definition at line 1184 of file coap_session.c.
const coap_bin_const_t* coap_session_get_psk_hint | ( | const coap_session_t * | session | ) |
Get the server session's current Identity Hint (PSK).
session | The current coap_session_t object. |
hint
if successful, else NULL
. Definition at line 1054 of file coap_session.c.
const coap_bin_const_t* coap_session_get_psk_key | ( | const coap_session_t * | session | ) |
Get the session's current pre-shared key (PSK).
session | The current coap_session_t object. |
psk_key
if successful, else NULL
. Definition at line 1061 of file coap_session.c.
coap_session_state_t coap_session_get_state | ( | const coap_session_t * | session | ) |
Get the session state.
session | The CoAP session. |
Definition at line 1208 of file coap_session.c.
void* coap_session_get_tls | ( | const coap_session_t * | session, |
coap_tls_library_t * | tls_lib | ||
) |
Get the session TLS security ptr (TLS type dependent)
OpenSSL: SSL* GnuTLS: gnutls_session_t (implicit *) Mbed TLS: mbedtls_ssl_context* TinyDTLS: struct dtls_context*
session | The CoAP session. |
tls_lib | Updated with the library type. |
NULL
if not set up Definition at line 1220 of file coap_session.c.
coap_session_type_t coap_session_get_type | ( | const coap_session_t * | session | ) |
Get the session type.
session | The CoAP session. |
Definition at line 1191 of file coap_session.c.
void coap_session_init_token | ( | coap_session_t * | session, |
size_t | length, | ||
const uint8_t * | token | ||
) |
Initializes the token value to use as a starting point.
session | The current coap_session_t object. |
length | The length of the token (0 - 8 bytes). |
token | The token data. |
Definition at line 1146 of file coap_session.c.
size_t coap_session_max_pdu_size | ( | const coap_session_t * | session | ) |
Get maximum acceptable PDU size.
session | The CoAP session. |
Definition at line 244 of file coap_session.c.
void coap_session_new_token | ( | coap_session_t * | session, |
size_t * | length, | ||
uint8_t * | token | ||
) |
Creates a new token for use.
session | The current coap_session_t object. |
length | Updated with the length of the new token. |
token | Updated with the new token data (must be 8 bytes long). |
Definition at line 1151 of file coap_session.c.
coap_session_t* coap_session_reference | ( | coap_session_t * | session | ) |
Increment reference counter on a session.
session | The CoAP session. |
Definition at line 70 of file coap_session.c.
void coap_session_release | ( | 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.
session | The CoAP session. |
Definition at line 76 of file coap_session.c.
void coap_session_set_app_data | ( | coap_session_t * | session, |
void * | data | ||
) |
Stores data
with the given session.
This function overwrites any value that has previously been stored with session
.
session | The CoAP session. |
data | The pointer to the data to store. |
Definition at line 98 of file coap_session.c.
void coap_session_set_mtu | ( | coap_session_t * | session, |
unsigned | mtu | ||
) |
Set the session MTU.
This is the maximum message size that can be sent, excluding IP and UDP overhead.
session | The CoAP session. |
mtu | maximum message size |
Definition at line 265 of file coap_session.c.
int coap_session_set_type_client | ( | coap_session_t * | session | ) |
Set the session type to client.
Typically used in a call-home server. The session needs to be of type COAP_SESSION_TYPE_SERVER. Note: If this function is successful, the session reference count is incremented and a subsequent coap_session_release() taking the reference count to 0 will cause the session to be freed off.
session | The CoAP session. |
1
if updated, 0
on failure. Definition at line 1198 of file coap_session.c.