/net-tools-latest/libcoap/include/coap/ |
D | address.h | 25 typedef struct coap_address_t { struct 28 } coap_address_t; typedef 40 typedef struct coap_address_t { struct 43 } coap_address_t; argument 57 typedef struct coap_address_t { struct 65 } coap_address_t; argument 72 int coap_address_equals(const coap_address_t *a, const coap_address_t *b); 75 _coap_address_isany_impl(const coap_address_t *a) { in _coap_address_isany_impl() 92 _coap_is_mcast_impl(const coap_address_t *a) { in _coap_is_mcast_impl() 116 coap_address_init(coap_address_t *addr) { in coap_address_init() [all …]
|
D | net.h | 38 coap_address_t remote; /**< remote address */ 64 const coap_address_t *remote, 126 const coap_address_t *dst, 177 coap_context_t *coap_new_context(const coap_address_t *listen_addr); 223 const coap_address_t *dst, 263 const coap_address_t *dst, 287 const coap_address_t *dst, 308 const coap_address_t *dst, 328 const coap_address_t *dst, 348 const coap_address_t *dst, in coap_send_rst() [all …]
|
D | coap_io.h | 54 coap_address_t addr; /**< local interface address */ 62 coap_endpoint_t *coap_new_endpoint(const coap_address_t *addr, int flags); 81 const coap_address_t *dst, 120 void coap_packet_copy_source(coap_packet_t *packet, coap_address_t *target); 145 coap_address_t src; /**< the packet's source address */ 146 coap_address_t dst; /**< the packet's destination address */
|
D | resource.h | 45 coap_address_t *, 297 const coap_address_t *observer, 310 const coap_address_t *peer, 322 const coap_address_t *observer, 337 const coap_address_t *observer, 394 const coap_address_t *,
|
D | async.h | 49 coap_address_t peer; /**< the peer to notify */ 86 coap_address_t *peer,
|
D | debug.h | 70 struct coap_address_t; 71 size_t coap_print_addr(const struct coap_address_t *, unsigned char *, size_t);
|
D | subscribe.h | 57 coap_address_t subscriber; /**< address and port of subscriber */
|
/net-tools-latest/libcoap/src/ |
D | address.c | 17 coap_address_equals(const coap_address_t *a, const coap_address_t *b) { in coap_address_equals()
|
D | coap_io.c | 43 coap_address_t src; /**< the packet's source address */ 44 coap_address_t dst; /**< the packet's destination address */ 78 coap_new_endpoint(const coap_address_t *addr, int flags) { in coap_new_endpoint() 120 coap_new_endpoint(const coap_address_t *addr, int flags) { in coap_new_endpoint() 240 const coap_address_t *dst, in coap_network_send() 389 coap_packet_copy_source(coap_packet_t *packet, coap_address_t *target) in coap_packet_copy_source() 391 memcpy(target, &packet->src, sizeof(coap_address_t)); in coap_packet_copy_source() 406 is_local_if(const coap_address_t *local, const coap_address_t *dst) { in is_local_if()
|
D | async.c | 24 coap_register_async(coap_context_t *context, coap_address_t *peer, in coap_register_async() 56 memcpy(&s->peer, peer, sizeof(coap_address_t)); in coap_register_async()
|
D | coap_io_lwip.c | 18 void coap_packet_copy_source(coap_packet_t *packet, coap_address_t *target) in coap_packet_copy_source() 67 coap_endpoint_t *coap_new_endpoint(const coap_address_t *addr, int flags) { in coap_new_endpoint()
|
D | resource.c | 523 coap_find_observer(coap_resource_t *resource, const coap_address_t *peer, 543 const coap_address_t *observer, 565 memcpy(&s->subscriber, observer, sizeof(coap_address_t)); 579 coap_touch_observer(coap_context_t *context, const coap_address_t *observer, 592 coap_delete_observer(coap_resource_t *resource, const coap_address_t *observer, 708 const coap_address_t *peer, 748 const coap_address_t *peer,
|
D | net.c | 334 const coap_address_t *listen_addr) { in coap_new_context() 496 coap_transaction_id(const coap_address_t *peer, const coap_pdu_t *pdu, in coap_transaction_id() 536 const coap_address_t *dst, in coap_send_ack() 556 const coap_address_t *dst, in coap_send_impl() 587 const coap_address_t *dst, in coap_send_impl() 618 const coap_address_t *dst, in coap_send() 627 const coap_address_t *dst, in coap_send_error() 648 const coap_address_t *dst, in coap_send_message_type() 704 const coap_address_t *dst, in coap_send_confirmed() 729 memcpy(&node->remote, dst, sizeof(coap_address_t)); in coap_send_confirmed() [all …]
|
D | debug.c | 162 coap_print_addr(const struct coap_address_t *addr, unsigned char *buf, size_t len) { in coap_print_addr()
|
/net-tools-latest/libcoap/examples/contiki/ |
D | coap-observer.c | 44 static coap_address_t dst; 57 coap_address_t listen_addr; in init_coap() 97 const coap_address_t *remote, in message_handler()
|
D | server.c | 53 coap_address_t listen_addr; in init_coap_server() 94 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_get_time()
|
/net-tools-latest/libcoap/examples/ |
D | etsi_iot_01.c | 130 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_get_index() 148 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_get_resource() 224 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_delete_resource() 240 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_post_test() 306 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_put_test() 357 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_delete_test() 373 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_get_query() 411 coap_address_t *peer, coap_pdu_t *request, str *token, in hnd_get_separate() 650 coap_address_t addr; in get_context()
|
D | coap-server.c | 72 coap_address_t *peer UNUSED_PARAM, in hnd_get_index() 95 coap_address_t *peer, in hnd_get_time() 162 coap_address_t *peer UNUSED_PARAM, in hnd_put_time() 198 coap_address_t *peer UNUSED_PARAM, in hnd_delete_time() 213 coap_address_t *peer, in hnd_get_async() 363 coap_address_t addr; in get_context()
|
D | coap-rd.c | 99 coap_address_t *peer UNUSED_PARAM, in hnd_get_resource() 127 coap_address_t *peer UNUSED_PARAM, in hnd_put_resource() 205 coap_address_t *peer UNUSED_PARAM, in hnd_delete_resource() 227 coap_address_t *peer UNUSED_PARAM, in hnd_get_rd() 295 coap_address_t *peer) { in add_source_address() 355 make_rd(coap_address_t *peer UNUSED_PARAM, coap_pdu_t *pdu) { in make_rd() 391 coap_address_t *peer, in hnd_post_rd() 592 coap_address_t addr; in get_context()
|
D | client.c | 180 const coap_address_t *remote) { in clear_obs() 317 const coap_address_t *remote, in message_handler() 1001 coap_address_t addr; in get_context() 1026 coap_address_t dst; in main()
|
/net-tools-latest/libcoap/examples/lwip/ |
D | server-coap.c | 7 coap_address_t listenaddress; in server_coap_init()
|
/net-tools-latest/ |
D | coap-client.c | 374 coap_address_t coap_dst; 881 coap_context_t *ctx, coap_address_t *src) in dispatch_data() 909 memcpy(&node->remote, src, sizeof(coap_address_t)); in dispatch_data() 942 coap_address_t addr; in read_from_peer() 1074 coap_address_t addr; in read_data_from_net() 1100 const coap_address_t *remote, in is_our_own() 1206 const coap_address_t *remote, in read_blocks() 1337 const coap_address_t *remote, in coap_message_handler() 1507 const coap_address_t *dst, in my_coap_network_send() 1530 coap_address_t addr; in get_coap_context()
|
/net-tools-latest/libcoap/tests/ |
D | test_wellknown.c | 249 coap_address_t addr; in t_wkc_tests_create()
|