Lines Matching defs:request
114 * message (request or response) is dropped after all retries have been
405 * the filter expression @p opts will be copied from the original request
406 * contained in @p request. Unless @c SHORT_ERROR_RESPONSE was defined at build
413 * @param request Specification of the received (confirmable) request.
416 * the original request in @p node.
420 coap_pdu_t *coap_new_error_response(const coap_pdu_t *request,
425 * Sends an error response with code @p code for request @p request to @p dst.
427 * from the request. This function returns the message id if the message was
431 * @param request The original request to respond to.
434 * @p request.
440 const coap_pdu_t *request,
450 * @param request The request that should be responded to.
455 coap_mid_t coap_send_message_type(coap_session_t *session, const coap_pdu_t *request,
459 * Sends an ACK message with code @c 0 for the specified @p request to @p dst.
464 * @param request The request to be acknowledged.
469 coap_mid_t coap_send_ack(coap_session_t *session, const coap_pdu_t *request);
472 * Sends an RST message with code @c 0 for the specified @p request to @p dst.
477 * @param request The request to be reset.
483 coap_send_rst(coap_session_t *session, const coap_pdu_t *request) {
484 return coap_send_message_type(session, request, COAP_MESSAGE_RST);
523 * been a response to a transmitted request.