Home
last modified time | relevance | path

Searched refs:nack_handler (Results 1 – 9 of 9) sorted by relevance

/third_party/libcoap/examples/riot/examples_libcoap_client/
Dclient-coap.c71 nack_handler(coap_session_t *session COAP_UNUSED, in nack_handler() function
207 coap_register_nack_handler(main_coap_context, nack_handler); in client_coap_init()
/third_party/libcoap/examples/lwip/
Dclient-coap.c57 nack_handler(coap_session_t *session COAP_UNUSED, in nack_handler() function
205 coap_register_nack_handler(main_coap_context, nack_handler); in client_coap_init()
/third_party/libcoap/src/
Dcoap_session.c645 session->context->nack_handler) { in coap_session_mfree()
647 session->context->nack_handler(session, q->pdu, in coap_session_mfree()
992 if (session->context->nack_handler) { in coap_session_disconnected()
1001 session->context->nack_handler(session, q->pdu, reason, q->id); in coap_session_disconnected()
1011 session->context->nack_handler(session, &session->lg_crcv->pdu, reason, in coap_session_disconnected()
1018 session->context->nack_handler(session, NULL, reason, 0); in coap_session_disconnected()
1051 && session->context->nack_handler) { in coap_session_disconnected()
1053 session->context->nack_handler(session, q->pdu, reason, q->id); in coap_session_disconnected()
Dcoap_net.c1708 if (node->pdu->type == COAP_MESSAGE_CON && context->nack_handler) { in coap_retransmit()
1710 context->nack_handler(node->session, node->pdu, COAP_NACK_TOO_MANY_RETRIES, node->id); in coap_retransmit()
2302 if (q->pdu->type == COAP_MESSAGE_CON && context->nack_handler) { in coap_cancel_session_messages()
2304 context->nack_handler(session, q->pdu, reason, q->id); in coap_cancel_session_messages()
2320 if (q->pdu->type == COAP_MESSAGE_CON && context->nack_handler) { in coap_cancel_session_messages()
2322 context->nack_handler(session, q->pdu, reason, q->id); in coap_cancel_session_messages()
3727 if (sent->pdu->type==COAP_MESSAGE_CON && context->nack_handler) { in coap_dispatch()
3729 context->nack_handler(sent->session, sent->pdu, in coap_dispatch()
3749 if (context->nack_handler) in coap_dispatch()
3750 context->nack_handler(session, NULL, COAP_NACK_RST, pdu->mid); in coap_dispatch()
[all …]
Dcoap_block.c1337 session->context->nack_handler(session, &p->pdu, in coap_block_check_lg_crcv_timeouts()
/third_party/libcoap/man/
Dcoap_recovery.txt.in142 but at that point COAP_NACK_TOO_MANY_RETRIES gets raised in the nack_handler
328 The client's nack_handler will get called with COAP_NACK_TOO_MANY_RETRIES when
334 nack_handler will get called with COAP_NACK_TOO_MANY_RETRIES when
/third_party/libcoap/include/coap3/
Dcoap_net_internal.h102 coap_nack_handler_t nack_handler; /**< Called when a response issue has member
/third_party/libcoap/doc/
Dupgrade_4.2.1_4.3.0.txt109 nack_handler(coap_context_t *context,
116 nack_handler(coap_session_t *session,
/third_party/libcoap/examples/
Dcoap-client.c345 nack_handler(coap_session_t *session COAP_UNUSED, in nack_handler() function
1839 coap_register_nack_handler(ctx, nack_handler); in main()