Lines Matching full:request
16 in the request. The CoAP client handles the communication over sockets.
23 The following is an example of a CoAP client initialization and request sending:
41 * destination address of the request or NULL if the socket is already connected.
46 After initialization, the application can send a CoAP request and wait for the response.
47 Currently only one request can be sent for a single CoAP client at a time. There can be multiple
52 - There is a response for the request
53 - The request failed for some reason
57 ``last_block`` is set to true, the response is finished and the client is ready for the next request
60 If the server responds to the request, the library provides the response to the
61 application through the response callback registered in the request structure.
78 LOG_ERR("Error in sending request %d", code);
82 CoAP options may also be added to the request by the application. The following is an example of
83 the application adding a Block2 option to the initial request, to suggest a maximum block size to
92 /* static, since options must remain valid throughout the whole execution of the request */