/third_party/libcoap/include/coap3/ |
H A D | coap_address.h | 32 struct coap_address_t { struct 41 coap_address_get_port(const coap_address_t *addr) { in coap_address_get_port() 49 coap_address_set_port(coap_address_t *addr, uint16_t port) { in coap_address_set_port() 69 struct coap_address_t { struct 78 coap_address_get_port(const coap_address_t *addr) { in coap_address_get_port() 86 coap_address_set_port(coap_address_t *addr, uint16_t port) { in coap_address_set_port() 117 struct coap_address_t { struct 130 uint16_t coap_address_get_port(const coap_address_t *addr); 135 void coap_address_set_port(coap_address_t *addr, uint16_t port); 142 int coap_address_equals(const coap_address_t * [all...] |
H A D | coap_tcp_internal.h | 49 const coap_address_t *local_if, 50 const coap_address_t *server, 52 coap_address_t *local_addr, 53 coap_address_t *remote_addr); 67 coap_address_t *local_addr, 68 coap_address_t *remote_addr); 83 const coap_address_t *listen_addr, 84 coap_address_t *bound_addr); 101 coap_address_t *local_addr, 102 coap_address_t *remote_add [all...] |
H A D | coap_session.h | 120 const coap_address_t *coap_session_get_addr_remote( 134 const coap_address_t *coap_session_get_addr_mcast( 144 const coap_address_t *coap_session_get_addr_local( 249 const coap_address_t *local_if, 250 const coap_address_t *server, 271 const coap_address_t *local_if, 272 const coap_address_t *server, 296 const coap_address_t *local_if, 297 const coap_address_t *server, 348 const coap_address_t *local_i [all...] |
H A D | coap_oscore.h | 58 const coap_address_t *local_if, 59 const coap_address_t *server, 83 const coap_address_t *local_if, 84 const coap_address_t *server, 109 const coap_address_t *local_if, 110 const coap_address_t *server,
|
H A D | coap_netif_internal.h | 57 const coap_address_t *listen_addr); 70 const coap_address_t *local_if, 71 const coap_address_t *server, int default_port); 124 const coap_address_t *listen_addr); 148 const coap_address_t *local_if, 149 const coap_address_t *server, int default_port);
|
H A D | coap_io_internal.h | 53 coap_address_t mcast_addr; /**< remote address and port (multicast track) */ 88 const coap_address_t *local_if, 89 const coap_address_t *server, 91 coap_address_t *local_addr, 92 coap_address_t *remote_addr); 96 const coap_address_t *listen_addr, 97 coap_address_t *bound_addr);
|
H A D | coap_forward_decls.h | 26 struct coap_address_t; 32 typedef struct coap_address_t coap_address_t; typedef
|
H A D | coap_io.h | 56 coap_address_t remote; /**< remote address and port */ 57 coap_address_t local; /**< local address and port */
|
H A D | coap_subscribe.h | 87 coap_address_t *e_listen_addr, 210 const coap_address_t *e_listen_addr,
|
H A D | coap_debug.h | 356 size_t coap_print_addr(const coap_address_t *address, 369 const char *coap_print_ip_addr(const coap_address_t *address,
|
H A D | coap_uri.h | 188 int coap_uri_into_options(const coap_uri_t *uri, const coap_address_t *dst,
|
H A D | coap_session_internal.h | 41 coap_address_t remote; /**< remote address and port */ 226 coap_address_t bind_addr; /**< local interface address */
|
/third_party/libcoap/src/ |
H A D | coap_io_lwip.c | 350 const coap_address_t *listen_addr, in coap_socket_bind_udp() 351 coap_address_t *bound_addr) { in coap_socket_bind_udp() 353 coap_address_t l_listen = *listen_addr; in coap_socket_bind_udp() 377 const coap_address_t *local_if, in coap_socket_connect_udp() 378 const coap_address_t *server, in coap_socket_connect_udp() 380 coap_address_t *local_addr, in coap_socket_connect_udp() 381 coap_address_t *remote_addr) { in coap_socket_connect_udp() 436 const coap_address_t *local_if, in coap_socket_connect_tcp1() 437 const coap_address_t *server, in coap_socket_connect_tcp1() 439 coap_address_t *local_add in coap_socket_connect_tcp1() [all...] |
H A D | coap_tcp.c | 44 const coap_address_t *local_if, 45 const coap_address_t *server, 47 coap_address_t *local_addr, 48 coap_address_t *remote_addr) { 56 coap_address_t connect_addr; 166 coap_address_t *local_addr, 167 coap_address_t *remote_addr) { 205 const coap_address_t *listen_addr, 206 coap_address_t *bound_addr) { 301 coap_address_t *local_add [all...] |
H A D | coap_address.c | 44 coap_address_get_port(const coap_address_t *addr) { in coap_address_get_port() 62 coap_address_set_port(coap_address_t *addr, uint16_t port) { in coap_address_set_port() 81 coap_address_equals(const coap_address_t *a, const coap_address_t *b) { in coap_address_equals() 109 coap_is_af_unix(const coap_address_t *a) { in coap_is_af_unix() 119 coap_is_mcast(const coap_address_t *a) { in coap_is_mcast() 158 int coap_is_bcast(const coap_address_t *a) { in coap_is_bcast() 180 coap_is_bcast(const coap_address_t *a) { in coap_is_bcast() 259 coap_address_init(coap_address_t *addr) { in coap_address_init() 261 memset(addr, 0, sizeof(coap_address_t)); in coap_address_init() [all...] |
H A D | coap_io_contiki.c | 84 const coap_address_t *listen_addr, in coap_socket_bind_udp() 85 coap_address_t *bound_addr) { in coap_socket_bind_udp() 108 const coap_address_t *local_if, in coap_socket_connect_udp() 109 const coap_address_t *server, in coap_socket_connect_udp() 111 coap_address_t *local_addr, in coap_socket_connect_udp() 112 coap_address_t *remote_addr) { in coap_socket_connect_udp()
|
H A D | coap_netif.c | 41 const coap_address_t *listen_addr) { in coap_netif_dgrm_listen() 53 coap_netif_dgrm_connect(coap_session_t *session, const coap_address_t *local_if, in coap_netif_dgrm_connect() 54 const coap_address_t *server, int default_port) { in coap_netif_dgrm_connect() 159 const coap_address_t *listen_addr) { in coap_netif_strm_listen() 185 const coap_address_t *local_if, in coap_netif_strm_connect1() 186 const coap_address_t *server, int default_port) { in coap_netif_strm_connect1()
|
H A D | coap_session.c | 521 const coap_address_t *local_addr, in coap_make_session() 522 const coap_address_t *remote_addr, int ifindex, in coap_make_session() 1260 const coap_address_t *local_if, in coap_session_create_client() 1261 const coap_address_t *server, in coap_session_create_client() 1418 const coap_address_t *local_if, in coap_new_client_session() 1419 const coap_address_t *server, in coap_new_client_session() 1433 const coap_address_t *local_if, in coap_new_client_session_psk() 1434 const coap_address_t *server, in coap_new_client_session_psk() 1458 const coap_address_t *local_if, in coap_new_client_session_psk2() 1459 const coap_address_t *serve in coap_new_client_session_psk2() [all...] |
H A D | coap_oscore.c | 67 const coap_address_t *local_if, in coap_new_client_session_oscore() 68 const coap_address_t *server, in coap_new_client_session_oscore() 86 const coap_address_t *local_if, in coap_new_client_session_oscore_psk() 87 const coap_address_t *server, in coap_new_client_session_oscore_psk() 106 const coap_address_t *local_if, in coap_new_client_session_oscore_pki() 107 const coap_address_t *server, in coap_new_client_session_oscore_pki() 2111 const coap_address_t *local_if, in coap_new_client_session_oscore() 2112 const coap_address_t *server, in coap_new_client_session_oscore() 2125 const coap_address_t *local_if, in coap_new_client_session_oscore_psk() 2126 const coap_address_t *serve in coap_new_client_session_oscore_psk() [all...] |
H A D | coap_subscribe.c | 51 const coap_address_t *e_listen_addr, in coap_persist_observe_add() 307 coap_proto_t *e_proto, coap_address_t *e_listen_addr, in coap_op_observe_read() 372 coap_proto_t e_proto, coap_address_t e_listen_addr, in coap_op_observe_write() 416 coap_address_t e_listen_addr; in coap_op_observe_load_disk() 490 coap_proto_t a_e_proto, coap_address_t *a_e_listen_addr, in coap_op_observe_added() 499 coap_address_t e_listen_addr; in coap_op_observe_added() 579 coap_address_t e_listen_addr; in coap_op_observe_deleted()
|
H A D | coap_tinydtls.c | 221 get_session_addr(const session_t *s, coap_address_t *a) { in get_session_addr() 255 put_session_addr(const coap_address_t *a, session_t *s) { in put_session_addr() 296 coap_address_t remote_addr; in dtls_send_to_peer() 316 coap_address_t remote_addr; in dtls_application_data() 381 coap_address_t remote_addr; in get_psk_info() 588 coap_address_t remote_addr; in verify_ecdsa_key()
|
H A D | coap_io.c | 147 const coap_address_t *listen_addr, 148 coap_address_t *bound_addr) { 258 const coap_address_t *local_if, 259 const coap_address_t *server, 261 coap_address_t *local_addr, 262 coap_address_t *remote_addr) { 274 coap_address_t connect_addr; 385 coap_address_t bind_addr; 428 coap_address_t bind_addr;
|
/third_party/libcoap/tests/ |
H A D | test_session.c | 146 coap_address_t laddr, saddr; in t_session6() 174 coap_address_t addr; in t_session_tests_create()
|
/third_party/libcoap/examples/lwip/ |
H A D | client-coap.c | 78 resolve_address(const char *host, const char *service, coap_address_t *dst, in resolve_address() 106 coap_address_t dst; in client_coap_init()
|
/third_party/libcoap/examples/riot/examples_libcoap_client/ |
H A D | client-coap.c | 96 resolve_address(const char *host, const char *service, coap_address_t *dst, in resolve_address() 121 coap_address_t dst; in client_coap_init()
|