Home
last modified time | relevance | path

Searched refs:coap_send (Results 1 – 17 of 17) sorted by relevance

/third_party/libcoap/include/coap3/
Dcoap_net.h498 coap_mid_t coap_send(coap_session_t *session, coap_pdu_t *pdu);
500 #define coap_send_large(session, pdu) coap_send(session, pdu)
/third_party/libcoap/man/
Dcoap_pdu_setup.txt.in29 coap_send,
83 *coap_mid_t coap_send(coap_session_t *_session_, coap_pdu_t *_pdu_);*
523 *Function: coap_send()*
525 The *coap_send*() function is used to initiate the transmission of the _pdu_
527 after calling *coap_send*() - even if there is a return error.
531 *coap_send*() to do this.
553 *coap_send*() returns the CoAP message ID on success or
647 if (coap_send(session, pdu) == COAP_INVALID_MID)
DMakefile.am162 @echo ".so man3/coap_pdu_setup.3" > coap_send.3
Dcoap_uri.txt.in237 mid = coap_send(session, pdu);
Dcoap_session.txt.in160 set back to the multicast IP when the next *coap_send*(3) is called.
Dcoap_logging.txt.in279 received PDU or coap_send() not yet called), then the output assumes that
Dcoap_handler.txt.in97 This _handler_ must not call *coap_send*(3) to send _response_pdu_.
Dcoap_block.txt.in395 if (coap_send(session, pdu) == COAP_INVALID_MID)
/third_party/libcoap/examples/
Dtiny.c176 coap_send(session, pdu); in main()
Dcoap-client.c1905 if (coap_send(session, pdu) == COAP_INVALID_MID) { in main()
1986 if (coap_send(session, pdu) == COAP_INVALID_MID) { in main()
Dcoap-rd.c230 if (coap_send(ctx, peer, response) == COAP_INVALID_MID) { in hnd_put_resource()
Dcoap-server.c857 if (coap_send(proxy_list[i].incoming, response) == in remove_proxy_association()
1164 coap_send(ongoing, pdu); in hnd_proxy_uri()
1714 coap_send(incoming, pdu); in proxy_response_handler()
/third_party/libcoap/
Dlibcoap-3.map215 coap_send;
Dlibcoap-3.sym212 coap_send
/third_party/libcoap/examples/riot/examples_libcoap_client/
Dclient-coap.c235 mid = coap_send(session, pdu); in client_coap_init()
/third_party/libcoap/examples/lwip/
Dclient-coap.c224 mid = coap_send(session, pdu); in client_coap_init()
/third_party/libcoap/src/
Dcoap_net.c1039 coap_send(coap_session_t *session, coap_pdu_t *pdu) { in coap_send() function