Home
last modified time | relevance | path

Searched refs:coap_new_endpoint (Results 1 – 11 of 11) sorted by relevance

/third_party/libcoap/man/
Dcoap_endpoint_server.txt.in17 coap_new_endpoint,
36 *coap_endpoint_t *coap_new_endpoint(coap_context_t *_context_,
87 coap_new_endpoint()
117 The *coap_new_endpoint*() function creates a new endpoint for _context_ that
163 *coap_new_endpoint*() function returns a newly created endpoint or
193 endpoint = coap_new_endpoint(context, &listen_addr, COAP_PROTO_UDP);
337 endpoint = coap_new_endpoint(context, &listen_addr, COAP_PROTO_DTLS);
464 endpoint = coap_new_endpoint(context, &listen_addr, COAP_PROTO_DTLS);
Dcoap_observe.txt.in265 ep = coap_new_endpoint(ctx, &addr, COAP_PROTO_UDP);
Dcoap_encryption.txt.in88 coap_new_endpoint()
996 endpoint = coap_new_endpoint(context, &listen_addr, COAP_PROTO_DTLS);
1128 endpoint = coap_new_endpoint(context, &listen_addr, COAP_PROTO_DTLS);
/third_party/libcoap/examples/
Dcoap-rd.c742 ep_udp = coap_new_endpoint(ctx, &addr, COAP_PROTO_UDP); in get_context()
745 ep_dtls = coap_new_endpoint(ctx, &addrs, COAP_PROTO_DTLS); in get_context()
753 ep_tcp = coap_new_endpoint(ctx, &addr, COAP_PROTO_TCP); in get_context()
756 ep_tls = coap_new_endpoint(ctx, &addrs, COAP_PROTO_TLS); in get_context()
Dcoap-server.c2311 ep_udp = coap_new_endpoint(ctx, &addr, COAP_PROTO_UDP); in get_context()
2314 ep_dtls = coap_new_endpoint(ctx, &addrs, COAP_PROTO_DTLS); in get_context()
2324 ep_tcp = coap_new_endpoint(ctx, &addr, COAP_PROTO_TCP); in get_context()
2328 ep_tls = coap_new_endpoint(ctx, &addrs, COAP_PROTO_TLS); in get_context()
/third_party/libcoap/
Dlibcoap-3.sym113 coap_new_endpoint
Dlibcoap-3.map115 coap_new_endpoint;
/third_party/libcoap/include/coap3/
Dcoap_session.h361 coap_endpoint_t *coap_new_endpoint(coap_context_t *context, const coap_address_t *listen_addr, coap…
/third_party/libcoap/src/
Dcoap_io_lwip.c118 coap_new_endpoint(coap_context_t *context, const coap_address_t *addr, coap_proto_t proto) { in coap_new_endpoint() function
Dcoap_session.c1300 coap_new_endpoint(coap_context_t *context, const coap_address_t *listen_addr, coap_proto_t proto) { in coap_new_endpoint() function
Dnet.c586 coap_endpoint_t *endpoint = coap_new_endpoint(c, listen_addr, COAP_PROTO_UDP); in coap_new_context()