Home
last modified time | relevance | path

Searched refs:COAP_RESPONSE_CLASS (Results 1 – 7 of 7) sorted by relevance

/third_party/libcoap/src/
Dcoap_net.c1688 if (COAP_RESPONSE_CLASS(node->pdu->code) >= 2) { in coap_retransmit()
2669 if (COAP_RESPONSE_CLASS(response->code) > 0) { in no_response()
2680 if (((1 << (COAP_RESPONSE_CLASS(response->code) - 1)) & val) > 0) { in no_response()
2704 COAP_RESPONSE_CLASS(response->code) == 2) { in no_response()
2713 COAP_RESPONSE_CLASS(response->code) == 4) { in no_response()
2717 COAP_RESPONSE_CLASS(response->code) == 5) { in no_response()
2739 COAP_RESPONSE_CLASS(response->code) > 2) in no_response()
3194 if (added_block && COAP_RESPONSE_CLASS(response->code) == 2) { in handle_request()
3214 if (COAP_RESPONSE_CLASS(response->code) != 2) { in handle_request()
3219 if (COAP_RESPONSE_CLASS(response->code) > 2) { in handle_request()
[all …]
Dcoap_resource.c1107 if (COAP_RESPONSE_CLASS(response->code) != 2) {
1110 if (COAP_RESPONSE_CLASS(response->code) > 2) {
Dcoap_block.c3044 if (COAP_RESPONSE_CLASS(rcvd->code) == 2 && in coap_handle_response_send_block()
3370 if (COAP_RESPONSE_CLASS(rcvd->code) == 2) { in coap_handle_response_get_block()
3773 } else if (COAP_RESPONSE_CLASS(rcvd->code) == 2) { in coap_handle_response_get_block()
/third_party/libcoap/include/coap3/
Dcoap_pdu.h159 #define COAP_RESPONSE_CLASS(C) (((C) >> 5) & 0xFF) macro
/third_party/libcoap/examples/
Dcoap-client.c396 COAP_RESPONSE_CLASS(rcv_code), rcv_code & 0x1F); in message_handler()
417 if (COAP_RESPONSE_CLASS(rcv_code) == 2) { in message_handler()
456 if (COAP_RESPONSE_CLASS(rcv_code) >= 4) { in message_handler()
457 fprintf(stderr, "%d.%02d", COAP_RESPONSE_CLASS(rcv_code), in message_handler()
Dcoap-server.c1632 COAP_RESPONSE_CLASS(rcv_code), rcv_code & 0x1F); in proxy_response_handler()
/third_party/libcoap/man/
Dcoap_handler.txt.in374 if (COAP_RESPONSE_CLASS(rcv_code) == 2) {