Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 3 of 3) sorted by relevance

/net-tools-3.4.0/libcoap/examples/
Dclient.c183 coap_tid_t tid = COAP_INVALID_TID; in clear_obs() local
193 return tid; in clear_obs()
243 tid = coap_send_confirmed(ctx, local_interface, remote, pdu); in clear_obs()
245 tid = coap_send(ctx, local_interface, remote, pdu); in clear_obs()
247 if (tid == COAP_INVALID_TID) { in clear_obs()
253 return tid; in clear_obs()
257 return tid; in clear_obs()
329 coap_tid_t tid; in message_handler() local
409 tid = coap_send_confirmed(ctx, local_interface, remote, pdu); in message_handler()
411 tid = coap_send(ctx, local_interface, remote, pdu); in message_handler()
[all …]
/net-tools-3.4.0/
Dcoap-client.c786 coap_tid_t tid; in send_packets() local
811 tid = coap_send_confirmed(user_data->coap_ctx, in send_packets()
816 tid = coap_send(user_data->coap_ctx, in send_packets()
821 if (pdu->hdr->type != COAP_MESSAGE_CON || tid == COAP_INVALID_TID) in send_packets()
836 coap_tid_t tid; in try_send() local
861 tid = coap_send_confirmed(user_data->coap_ctx, in try_send()
866 tid = coap_send(user_data->coap_ctx, in try_send()
871 if (pdu->hdr->type != COAP_MESSAGE_CON || tid == COAP_INVALID_TID) in try_send()
1216 coap_tid_t tid; in read_blocks() local
1240 tid = coap_send_confirmed(coap_ctx, in read_blocks()
[all …]
/net-tools-3.4.0/libcoap/src/
Dresource.c627 coap_tid_t tid = COAP_INVALID_TID; local
663 tid = coap_send_confirmed(context, &obs->local_if, &obs->subscriber, response);
666 tid = coap_send(context, &obs->local_if, &obs->subscriber, response);
670 if (COAP_INVALID_TID == tid || response->hdr->type != COAP_MESSAGE_CON)
672 if (COAP_INVALID_TID == tid)