Lines Matching full:request
33 * @brief Callback for CoAP request.
53 * @brief Representation of a CoAP client request.
56 enum coap_method method; /**< Method of the request */
60 const uint8_t *payload; /**< User allocated buffer for send request */
63 const struct coap_client_option *options; /**< Extra options to be added to request */
69 * @brief Representation of extra options for the CoAP client request
99 struct coap_packet request; member
132 * @brief Send CoAP request
142 * @param addr the destination address of the request, NULL if socket is already connected.
143 * @param req CoAP request structure
164 * This function cancels all CoAP client request that matches the given request.
165 * The request is matched based on the method, path, callback and user_data, if provided.
172 * @param req Pointer to the CoAP client request to be canceled.
177 * @brief Initialise a Block2 option to be added to a request
179 * If the application expects a request to require a blockwise transfer, it may pre-emptively
183 * This helper function returns a Block2 option to send with the initial request.