Searched refs:nack_handler (Results 1 - 7 of 7) sorted by relevance
/third_party/libcoap/examples/lwip/ |
H A D | client-coap.c | 57 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/examples/riot/examples_libcoap_client/ |
H A D | client-coap.c | 71 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/src/ |
H A D | coap_net.c | 1708 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(sessio in coap_dispatch() [all...] |
H A D | coap_session.c | 645 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()
|
H A D | coap_block.c | 1337 session->context->nack_handler(session, &p->pdu, in coap_block_check_lg_crcv_timeouts()
|
/third_party/libcoap/include/coap3/ |
H A D | coap_net_internal.h | 102 coap_nack_handler_t nack_handler; /**< Called when a response issue has member
|
/third_party/libcoap/examples/ |
H A D | coap-client.c | 345 nack_handler(coap_session_t *session COAP_UNUSED, in nack_handler() function 353 coap_log_err("nack_handler: Unexpected token\n"); in nack_handler() 1839 coap_register_nack_handler(ctx, nack_handler); in main()
|
Completed in 17 milliseconds