Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
CoAP client API

CoAP client API. More...

Data Structures

struct  coap_client_request
 Representation of a CoAP client request. More...
 
struct  coap_client_option
 Representation of extra options for the CoAP client request. More...
 

Macros

#define MAX_COAP_MSG_LEN
 

Typedefs

typedef void(* coap_client_response_cb_t) (int16_t result_code, size_t offset, const uint8_t *payload, size_t len, bool last_block, void *user_data)
 Callback for CoAP request.
 

Functions

int coap_client_init (struct coap_client *client, const char *info)
 Initialize the CoAP client.
 
int coap_client_req (struct coap_client *client, int sock, const struct sockaddr *addr, struct coap_client_request *req, struct coap_transmission_parameters *params)
 Send CoAP request.
 

Detailed Description

CoAP client API.

Macro Definition Documentation

◆ MAX_COAP_MSG_LEN

#define MAX_COAP_MSG_LEN

#include <zephyr/net/coap_client.h>

Value:
(CONFIG_COAP_CLIENT_MESSAGE_HEADER_SIZE + \
CONFIG_COAP_CLIENT_MESSAGE_SIZE)

Typedef Documentation

◆ coap_client_response_cb_t

coap_client_response_cb_t

#include <zephyr/net/coap_client.h>

Callback for CoAP request.

This callback is called for responses to CoAP client requests. It is used to indicate errors, response codes from server or to deliver payload. Blockwise transfers cause this callback to be called sequentially with increasing payload offset and only partial content in buffer pointed by payload parameter.

Parameters
result_codeResult code of the response. Negative if there was a failure in send. coap_response_code for positive.
offsetPayload offset from the beginning of a blockwise transfer.
payloadBuffer containing the payload from the response. NULL for empty payload.
lenSize of the payload.
last_blockIndicates the last block of the response.
user_dataUser provided context.

Function Documentation

◆ coap_client_init()

int coap_client_init ( struct coap_client *  client,
const char *  info 
)

#include <zephyr/net/coap_client.h>

Initialize the CoAP client.

Parameters
[in]clientClient instance.
[in]infoName for the receiving thread of the client. Setting this NULL will result as default name of "coap_client".
Returns
int Zero on success, otherwise a negative error code.

◆ coap_client_req()

int coap_client_req ( struct coap_client *  client,
int  sock,
const struct sockaddr addr,
struct coap_client_request req,
struct coap_transmission_parameters params 
)

#include <zephyr/net/coap_client.h>

Send CoAP request.

Operation is handled asynchronously using a background thread. If the socket isn't connected to a destination address, user must provide a destination address, otherwise the address should be set as NULL. Once the callback is called with last block set as true, socket can be closed or used for another query.

Parameters
clientClient instance.
sockOpen socket file descriptor.
addrthe destination address of the request, NULL if socket is already connected.
reqCoAP request structure
paramsPointer to transmission parameters structure or NULL to use default values.
Returns
zero when operation started successfully or negative error code otherwise.