Searched defs:coap_queue_t (Results 1 – 3 of 3) sorted by relevance
40 typedef struct coap_queue_t { struct41 struct coap_queue_t *next; argument49 } coap_queue_t; argument
34 struct coap_queue_t { struct35 struct coap_queue_t *next; argument36 coap_tick_t t; /**< when to send PDU for the next time */37 unsigned char retransmit_cnt; /**< retransmission counter, will be removed39 uint8_t is_mcast; /**< Set if this is a queued mcast response */40 unsigned int timeout; /**< the randomized timeout value */41 coap_session_t *session; /**< the CoAP session */42 coap_mid_t id; /**< CoAP message id */43 coap_pdu_t *pdu; /**< the CoAP PDU to send */
76 typedef struct coap_queue_t coap_queue_t; typedef