Searched defs:coap_client_request (Results 1 – 1 of 1) sorted by relevance
55 struct coap_client_request { struct56 enum coap_method method; /**< Method of the request */57 bool confirmable; /**< CoAP Confirmable/Non-confirmable message */58 const char *path; /**< Path of the requested resource */59 enum coap_content_format fmt; /**< Content format to be used */60 const uint8_t *payload; /**< User allocated buffer for send request */61 size_t len; /**< Length of the payload */62 coap_client_response_cb_t cb; /**< Callback when response received */63 const struct coap_client_option *options; /**< Extra options to be added to request */64 uint8_t num_options; /**< Number of extra options */[all …]