Searched defs:pdu (Results 1 – 2 of 2) sorted by relevance
312 #define COAP_PDU_IS_EMPTY(pdu) ((pdu)->code == 0) argument313 #define COAP_PDU_IS_REQUEST(pdu) (!COAP_PDU_IS_EMPTY(pdu) && (pdu)->code < 32) argument314 #define COAP_PDU_IS_RESPONSE(pdu) ((pdu)->code >= 64 && (pdu)->code < 224) argument315 #define COAP_PDU_IS_SIGNALING(pdu) ((pdu)->code >= 224) argument
48 coap_pdu_t *pdu; /**< the CoAP PDU to send */ member