/third_party/libcoap/include/coap3/ |
D | coap_netif_internal.h | 46 int coap_netif_available_ep(coap_endpoint_t *endpoint); 56 int coap_netif_dgrm_listen(coap_endpoint_t *endpoint, 97 ssize_t coap_netif_dgrm_read_ep(coap_endpoint_t *endpoint, 123 int coap_netif_strm_listen(coap_endpoint_t *endpoint, 134 int coap_netif_strm_accept(coap_endpoint_t *endpoint, coap_session_t *session); 203 void coap_netif_close_ep(coap_endpoint_t *endpoint);
|
D | coap_io_internal.h | 49 coap_endpoint_t *endpoint; /**< Used by the epoll logic for a listening 80 coap_endpoint_t *coap_malloc_endpoint(void); 81 void coap_mfree_endpoint(coap_endpoint_t *ep);
|
D | coap_session.h | 397 coap_endpoint_t *coap_new_endpoint(coap_context_t *context, const coap_address_t *listen_addr, 407 void coap_endpoint_set_default_mtu(coap_endpoint_t *endpoint, unsigned mtu); 414 void coap_free_endpoint(coap_endpoint_t *endpoint); 438 const char *coap_endpoint_str(const coap_endpoint_t *endpoint);
|
D | coap_session_internal.h | 84 coap_endpoint_t *endpoint; /**< session's endpoint */ 219 struct coap_endpoint_t { struct 220 struct coap_endpoint_t *next; argument 317 coap_endpoint_t *ep 357 coap_session_t *coap_endpoint_get_session(coap_endpoint_t *endpoint,
|
D | coap_forward_decls.h | 106 typedef struct coap_endpoint_t coap_endpoint_t; typedef
|
D | coap_net_internal.h | 75 coap_endpoint_t *endpoint; /**< the endpoints used for listening */
|
D | coap_net.h | 258 coap_endpoint_t *coap_context_get_endpoint(const coap_context_t *context);
|
/third_party/libcoap/src/ |
D | coap_netif.c | 35 coap_netif_available_ep(coap_endpoint_t *endpoint) { in coap_netif_available_ep() 40 coap_netif_dgrm_listen(coap_endpoint_t *endpoint, in coap_netif_dgrm_listen() 99 coap_netif_dgrm_read_ep(coap_endpoint_t *endpoint, coap_packet_t *packet) { in coap_netif_dgrm_read_ep() 158 coap_netif_strm_listen(coap_endpoint_t *endpoint, in coap_netif_strm_listen() 170 coap_netif_strm_accept(coap_endpoint_t *endpoint, coap_session_t *session) { in coap_netif_strm_accept() 265 coap_netif_close_ep(coap_endpoint_t *endpoint) { in coap_netif_close_ep()
|
D | coap_session.c | 523 coap_context_t *context, coap_endpoint_t *endpoint) { in coap_make_session() 1108 coap_endpoint_get_session(coap_endpoint_t *endpoint, in coap_endpoint_get_session() 1668 coap_new_server_session(coap_context_t *ctx, coap_endpoint_t *ep) { in coap_new_server_session() 1843 coap_endpoint_t * 1845 coap_endpoint_t *ep = NULL; in coap_new_endpoint() 1891 memset(ep, 0, sizeof(coap_endpoint_t)); in coap_new_endpoint() 1944 coap_endpoint_set_default_mtu(coap_endpoint_t *ep, unsigned mtu) { in coap_endpoint_set_default_mtu() 1949 coap_free_endpoint(coap_endpoint_t *ep) { in coap_free_endpoint() 2001 coap_endpoint_t *ep; in coap_session_get_by_peer() 2046 coap_endpoint_str(const coap_endpoint_t *endpoint) { in coap_endpoint_str()
|
D | coap_io_lwip.c | 216 coap_endpoint_t *ep = (coap_endpoint_t *)arg; in coap_recvs()
|
D | coap_io.c | 132 coap_endpoint_t * 134 return (coap_endpoint_t *)coap_malloc_type(COAP_ENDPOINT, sizeof(coap_endpoint_t)); in coap_malloc_endpoint() 138 coap_mfree_endpoint(coap_endpoint_t *ep) { in coap_mfree_endpoint() 1414 coap_endpoint_t *ep; 1796 coap_endpoint_t *ep;
|
D | coap_net.c | 463 coap_endpoint_t * 542 coap_endpoint_t *endpoint = coap_new_endpoint(c, listen_addr, COAP_PROTO_UDP); in coap_new_context() 612 coap_endpoint_t *ep, *tmp; in coap_free_context() 1983 coap_read_endpoint(coap_context_t *ctx, coap_endpoint_t *endpoint, coap_tick_t now) { in coap_read_endpoint() 2030 coap_write_endpoint(coap_context_t *ctx, coap_endpoint_t *endpoint, coap_tick_t now) { in coap_write_endpoint() 2039 coap_accept_endpoint(coap_context_t *ctx, coap_endpoint_t *endpoint, in coap_accept_endpoint() 2059 coap_endpoint_t *ep, *tmp; in coap_io_do_io() 2125 coap_endpoint_t *endpoint = sock->endpoint; in coap_io_do_epoll() 3946 coap_endpoint_t *ep; in coap_can_exit() 4117 coap_endpoint_t *endpoint; in coap_join_mcast_group_intf()
|
D | coap_mem.c | 233 static coap_endpoint_t endpoint_storage_data[COAP_MAX_ENDPOINTS];
|
D | coap_subscribe.c | 73 coap_endpoint_t *ep; in coap_persist_observe_add()
|
/third_party/libcoap/man/ |
D | coap_endpoint_server.txt.in | 37 *coap_endpoint_t *coap_new_endpoint(coap_context_t *_context_, 40 *void coap_free_endpoint(coap_endpoint_t *_endpoint_);* 42 *void coap_endpoint_set_default_mtu(coap_endpoint_t *_endpoint_, 222 coap_endpoint_t *endpoint; 264 coap_endpoint_t *endpoint; 373 coap_endpoint_t *endpoint; 515 coap_endpoint_t *endpoint;
|
D | coap_logging.txt.in | 87 *const char *coap_endpoint_str(const coap_endpoint_t *_endpoint_);*
|
D | coap_persist.txt.in | 316 coap_endpoint_t *ep = NULL;
|
D | coap_observe.txt.in | 271 coap_endpoint_t *ep = NULL;
|
D | coap_encryption.txt.in | 943 coap_endpoint_t *endpoint; 1091 coap_endpoint_t *endpoint;
|
/third_party/libcoap/examples/lwip/config/ |
D | lwippools.h | 140 LWIP_MEMPOOL(COAP_ENDPOINT, MEMP_NUM_COAPENDPOINT, sizeof(coap_endpoint_t), "COAP_ENDPOINT")
|
/third_party/libcoap/examples/lwip/ |
D | server-coap.c | 179 coap_endpoint_t *ep; in server_coap_init()
|
/third_party/libcoap/examples/riot/examples_libcoap_server/ |
D | server-coap.c | 175 coap_endpoint_t *ep; in init_coap_context_endpoints()
|
/third_party/libcoap/examples/ |
D | oscore-interop-server.c | 460 coap_endpoint_t *ep_udp = NULL; in get_context() 473 coap_endpoint_t *ep_tcp; in get_context()
|
D | coap-rd.c | 723 coap_endpoint_t *ep; in get_context()
|
/third_party/libcoap/ |
D | ChangeLog | 140 * coap_endpoint_t and coap_subscription_t made opaque to applications
|