Home
last modified time | relevance | path

Searched refs:COAP_PDU_IS_REQUEST (Results 1 – 6 of 6) sorted by relevance

/third_party/libcoap/src/
Dcoap_net.c715 if (COAP_PDU_IS_REQUEST(pdu) && ctx->proxy_uri_resource && in coap_option_check_critical()
744 COAP_PDU_IS_REQUEST(pdu)) { in coap_option_check_critical()
1074 COAP_PDU_IS_REQUEST(pdu)) { in coap_send()
1099 if (COAP_PDU_IS_REQUEST(pdu) && in coap_send()
1122 if (COAP_PDU_IS_REQUEST(pdu) && !coap_rebuild_pdu_for_proxy(pdu)) { in coap_send()
1133 if (COAP_PDU_IS_REQUEST(pdu)) { in coap_send()
1183 COAP_PDU_IS_REQUEST(pdu)) { in coap_send()
1216 if (COAP_PDU_IS_REQUEST(&lg_xmit->pdu) && in coap_send()
1240 if (COAP_PDU_IS_REQUEST(&lg_xmit->pdu) && in coap_send()
1260 if (COAP_PDU_IS_REQUEST(pdu) && in coap_send()
[all …]
Dcoap_async.c45 if (!COAP_PDU_IS_REQUEST(request)) in coap_register_async()
Dcoap_block.c568 if (COAP_PDU_IS_REQUEST(&lg_xmit->pdu) || in coap_find_lg_xmit_response()
654 if (COAP_PDU_IS_REQUEST(pdu)) { in coap_add_data_large_internal()
718 if (COAP_PDU_IS_REQUEST(pdu) && !coap_rebuild_pdu_for_proxy(pdu)) in coap_add_data_large_internal()
813 if (COAP_PDU_IS_REQUEST(pdu)) { in coap_add_data_large_internal()
953 if (COAP_PDU_IS_REQUEST(pdu)) in coap_add_data_large_internal()
2001 COAP_PDU_IS_REQUEST(actual)); in coap_block_test_q_block()
2153 if (COAP_PDU_IS_REQUEST(&lg_xmit->pdu)) in coap_block_delete_lg_xmit()
3032 if (!COAP_PDU_IS_REQUEST(&p->pdu) || in coap_handle_response_send_block()
3889 if (COAP_PDU_IS_REQUEST(pdu) && session->lg_xmit) { in coap_check_update_token()
Dcoap_oscore.c274 uint8_t coap_request = COAP_PDU_IS_REQUEST(pdu); in coap_oscore_new_pdu_encrypted()
786 uint8_t coap_request = COAP_PDU_IS_REQUEST(pdu); in coap_oscore_decrypt_pdu()
Dcoap_pdu.c728 if (COAP_PDU_IS_REQUEST(pdu) && in coap_add_option_internal()
/third_party/libcoap/include/coap3/
Dcoap_pdu_internal.h90 #define COAP_PDU_IS_REQUEST(pdu) (!COAP_PDU_IS_EMPTY(pdu) && (pdu)->code < 32) macro