4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
27 #include <sys/socket.h>
28 #include <asm/types.h>
29 #include <linux/netlink.h>
30 #include <linux/rtnetlink.h>
35 #include <avahi-common/error.h>
36 #include <avahi-common/malloc.h>
46 static void update_address_rr(AvahiInterfaceMonitor *m, AvahiInterfaceAddress *a, int remove_rrs) {
50 if (a->interface->announcing &&
51 m->list == LIST_DONE &&
52 avahi_interface_address_relevant(a) &&
54 m->server->config.publish_addresses &&
55 (m->server->state == AVAHI_SERVER_RUNNING ||
56 m->server->state == AVAHI_SERVER_REGISTERING)) {
58 /* Fill the entry group */
60 a->entry_group = avahi_s_entry_group_new(m->server, avahi_host_rr_entry_group_callback, NULL);
62 if (!a->entry_group) /* OOM */
65 if (avahi_s_entry_group_is_empty(a->entry_group)) {
67 avahi_address_snprint(t, sizeof(t), &a->address);
69 avahi_log_info("Registering new address %s on %s.", t, a->interface->hardware->name);
71 if (avahi_server_add_address(m->server, a->entry_group, a->interface->hardware->index, a->interface->protocol, 0, NULL, &a->address) < 0) {
72 avahi_log_warn(__FILE__": avahi_server_add_address() failed: %s", avahi_strerror(m->server->error));
73 avahi_s_entry_group_free(a->entry_group);
74 a->entry_group = NULL;
78 avahi_s_entry_group_commit(a->entry_group);
82 /* Clear the entry group */
84 if (a->entry_group && !avahi_s_entry_group_is_empty(a->entry_group)) {
86 avahi_address_snprint(t, sizeof(t), &a->address);
88 if (avahi_s_entry_group_get_state(a->entry_group) == AVAHI_ENTRY_GROUP_REGISTERING)
89 avahi_server_decrease_host_rr_pending(m->server);
91 avahi_log_info("Withdrawing address %s on %s.", t, a->interface->hardware->name);
93 avahi_s_entry_group_reset(a->entry_group);
98 static void update_interface_rr(AvahiInterfaceMonitor *m, AvahiInterface *i, int remove_rrs) {
99 AvahiInterfaceAddress *a;
104 for (a = i->addresses; a; a = a->address_next)
105 update_address_rr(m, a, remove_rrs);
108 static void update_hw_interface_rr(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, int remove_rrs) {
114 for (i = hw->interfaces; i; i = i->by_hardware_next)
115 update_interface_rr(m, i, remove_rrs);
117 if (m->list == LIST_DONE &&
119 m->server->config.publish_workstation &&
120 (m->server->state == AVAHI_SERVER_RUNNING ||
121 m->server->state == AVAHI_SERVER_REGISTERING)) {
123 if (!hw->entry_group)
124 hw->entry_group = avahi_s_entry_group_new(m->server, avahi_host_rr_entry_group_callback, NULL);
126 if (!hw->entry_group)
129 if (avahi_s_entry_group_is_empty(hw->entry_group)) {
133 if (!(t = avahi_format_mac_address(hw->mac_address, hw->mac_address_size)))
136 name = avahi_strdup_printf("%s [%s]", m->server->host_name, t);
142 if (avahi_server_add_service(m->server, hw->entry_group, hw->index, AVAHI_PROTO_UNSPEC, name, "_workstation._tcp", NULL, NULL, 9, NULL) < 0) {
143 avahi_log_warn(__FILE__": avahi_server_add_service() failed.");
144 avahi_s_entry_group_free(hw->entry_group);
145 hw->entry_group = NULL;
147 avahi_s_entry_group_commit(hw->entry_group);
154 if (hw->entry_group && !avahi_s_entry_group_is_empty(hw->entry_group)) {
156 if (avahi_s_entry_group_get_state(hw->entry_group) == AVAHI_ENTRY_GROUP_REGISTERING)
157 avahi_server_decrease_host_rr_pending(m->server);
159 avahi_s_entry_group_reset(hw->entry_group);
164 static void free_address(AvahiInterfaceMonitor *m, AvahiInterfaceAddress *a) {
167 assert(a->interface);
169 update_address_rr(m, a, 1);
170 AVAHI_LLIST_REMOVE(AvahiInterfaceAddress, address, a->interface->addresses, a);
173 avahi_s_entry_group_free(a->entry_group);
178 static void free_interface(AvahiInterfaceMonitor *m, AvahiInterface *i, int send_goodbye) {
182 avahi_goodbye_interface(m->server, i, send_goodbye);
183 avahi_response_scheduler_force(i->response_scheduler);
185 assert(!i->announcements);
187 update_interface_rr(m, i, 1);
190 free_address(m, i->addresses);
192 avahi_response_scheduler_free(i->response_scheduler);
193 avahi_query_scheduler_free(i->query_scheduler);
194 avahi_probe_scheduler_free(i->probe_scheduler);
195 avahi_cache_free(i->cache);
197 AVAHI_LLIST_REMOVE(AvahiInterface, interface, m->interfaces, i);
198 AVAHI_LLIST_REMOVE(AvahiInterface, by_hardware, i->hardware->interfaces, i);
203 static void free_hw_interface(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, int send_goodbye) {
207 update_hw_interface_rr(m, hw, 1);
209 while (hw->interfaces)
210 free_interface(m, hw->interfaces, send_goodbye);
213 avahi_s_entry_group_free(hw->entry_group);
215 AVAHI_LLIST_REMOVE(AvahiHwInterface, hardware, m->hw_interfaces, hw);
216 avahi_hashmap_remove(m->hashmap, &hw->index);
218 avahi_free(hw->name);
222 static AvahiInterfaceAddress* get_address(AvahiInterfaceMonitor *m, AvahiInterface *i, const AvahiAddress *raddr) {
223 AvahiInterfaceAddress *ia;
229 for (ia = i->addresses; ia; ia = ia->address_next)
230 if (avahi_address_cmp(&ia->address, raddr) == 0)
236 static int netlink_list_items(AvahiNetlink *nl, uint16_t type, unsigned *ret_seq) {
238 struct rtgenmsg *gen;
241 memset(&req, 0, sizeof(req));
242 n = (struct nlmsghdr*) req;
243 n->nlmsg_len = NLMSG_LENGTH(sizeof(struct rtgenmsg));
244 n->nlmsg_type = type;
245 n->nlmsg_flags = NLM_F_ROOT/*|NLM_F_MATCH*/|NLM_F_REQUEST;
249 memset(gen, 0, sizeof(struct rtgenmsg));
250 gen->rtgen_family = AF_UNSPEC;
252 return avahi_netlink_send(nl, n, ret_seq);
255 static void new_interface(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, AvahiProtocol protocol) {
260 assert(protocol != AVAHI_PROTO_UNSPEC);
262 if (!(i = avahi_new(AvahiInterface, 1)))
267 i->protocol = protocol;
270 AVAHI_LLIST_HEAD_INIT(AvahiInterfaceAddress, i->addresses);
271 AVAHI_LLIST_HEAD_INIT(AvahiAnnouncement, i->announcements);
273 i->cache = avahi_cache_new(m->server, i);
274 i->response_scheduler = avahi_response_scheduler_new(i);
275 i->query_scheduler = avahi_query_scheduler_new(i);
276 i->probe_scheduler = avahi_probe_scheduler_new(i);
278 if (!i->cache || !i->response_scheduler || !i->query_scheduler || !i->probe_scheduler)
281 AVAHI_LLIST_PREPEND(AvahiInterface, by_hardware, hw->interfaces, i);
282 AVAHI_LLIST_PREPEND(AvahiInterface, interface, m->interfaces, i);
289 avahi_cache_free(i->cache);
290 if (i->response_scheduler)
291 avahi_response_scheduler_free(i->response_scheduler);
292 if (i->query_scheduler)
293 avahi_query_scheduler_free(i->query_scheduler);
294 if (i->probe_scheduler)
295 avahi_probe_scheduler_free(i->probe_scheduler);
300 static void check_interface_relevant(AvahiInterfaceMonitor *m, AvahiInterface *i) {
306 b = avahi_interface_relevant(i);
308 if (m->list == LIST_DONE && b && !i->announcing) {
309 avahi_log_info("New relevant interface %s.%i.", i->hardware->name, i->protocol);
311 if (i->protocol == AVAHI_PROTO_INET)
312 avahi_mdns_mcast_join_ipv4(m->server->fd_ipv4, i->hardware->index);
313 if (i->protocol == AVAHI_PROTO_INET6)
314 avahi_mdns_mcast_join_ipv6(m->server->fd_ipv6, i->hardware->index);
317 avahi_announce_interface(m->server, i);
318 avahi_browser_new_interface(m->server, i);
319 } else if (!b && i->announcing) {
320 avahi_log_info("Interface %s.%i no longer relevant.", i->hardware->name, i->protocol);
322 if (i->protocol == AVAHI_PROTO_INET)
323 avahi_mdns_mcast_leave_ipv4(m->server->fd_ipv4, i->hardware->index);
324 if (i->protocol == AVAHI_PROTO_INET6)
325 avahi_mdns_mcast_leave_ipv6(m->server->fd_ipv6, i->hardware->index);
327 avahi_goodbye_interface(m->server, i, 0);
328 avahi_response_scheduler_clear(i->response_scheduler);
329 avahi_query_scheduler_clear(i->query_scheduler);
330 avahi_probe_scheduler_clear(i->probe_scheduler);
331 avahi_cache_flush(i->cache);
337 static void check_hw_interface_relevant(AvahiInterfaceMonitor *m, AvahiHwInterface *hw) {
343 for (i = hw->interfaces; i; i = i->by_hardware_next)
344 check_interface_relevant(m, i);
347 static void check_all_interfaces_relevant(AvahiInterfaceMonitor *m) {
351 for (i = m->interfaces; i; i = i->interface_next)
352 check_interface_relevant(m, i);
355 static void netlink_callback(AvahiNetlink *nl, struct nlmsghdr *n, void* userdata) {
356 AvahiInterfaceMonitor *m = userdata;
360 assert(m->netlink == nl);
362 if (n->nlmsg_type == RTM_NEWLINK) {
363 struct ifinfomsg *ifinfomsg = NLMSG_DATA(n);
364 AvahiHwInterface *hw;
365 struct rtattr *a = NULL;
368 if (ifinfomsg->ifi_family != AF_UNSPEC)
371 if (!(hw = avahi_hashmap_lookup(m->hashmap, &ifinfomsg->ifi_index))) {
373 if (!(hw = avahi_new(AvahiHwInterface, 1)))
380 hw->index = (AvahiIfIndex) ifinfomsg->ifi_index;
381 hw->mac_address_size = 0;
382 hw->entry_group = NULL;
384 AVAHI_LLIST_HEAD_INIT(AvahiInterface, hw->interfaces);
385 AVAHI_LLIST_PREPEND(AvahiHwInterface, hardware, m->hw_interfaces, hw);
387 avahi_hashmap_insert(m->hashmap, &hw->index, hw);
389 if (m->server->fd_ipv4 >= 0)
390 new_interface(m, hw, AVAHI_PROTO_INET);
391 if (m->server->fd_ipv6 >= 0)
392 new_interface(m, hw, AVAHI_PROTO_INET6);
395 hw->flags = ifinfomsg->ifi_flags;
397 l = NLMSG_PAYLOAD(n, sizeof(struct ifinfomsg));
398 a = IFLA_RTA(ifinfomsg);
400 while (RTA_OK(a, l)) {
401 switch(a->rta_type) {
403 avahi_free(hw->name);
404 hw->name = avahi_strndup(RTA_DATA(a), RTA_PAYLOAD(a));
408 assert(RTA_PAYLOAD(a) == sizeof(unsigned int));
409 hw->mtu = *((unsigned int*) RTA_DATA(a));
413 hw->mac_address_size = RTA_PAYLOAD(a);
414 if (hw->mac_address_size > AVAHI_MAX_MAC_ADDRESS)
415 hw->mac_address_size = AVAHI_MAX_MAC_ADDRESS;
417 memcpy(hw->mac_address, RTA_DATA(a), hw->mac_address_size);
428 check_hw_interface_relevant(m, hw);
429 update_hw_interface_rr(m, hw, 0);
431 } else if (n->nlmsg_type == RTM_DELLINK) {
432 struct ifinfomsg *ifinfomsg = NLMSG_DATA(n);
433 AvahiHwInterface *hw;
435 if (ifinfomsg->ifi_family != AF_UNSPEC)
438 if (!(hw = avahi_interface_monitor_get_hw_interface(m, (AvahiIfIndex) ifinfomsg->ifi_index)))
441 free_hw_interface(m, hw, 0);
443 } else if (n->nlmsg_type == RTM_NEWADDR || n->nlmsg_type == RTM_DELADDR) {
445 struct ifaddrmsg *ifaddrmsg = NLMSG_DATA(n);
447 struct rtattr *a = NULL;
452 if (ifaddrmsg->ifa_family != AVAHI_PROTO_INET && ifaddrmsg->ifa_family != AVAHI_PROTO_INET6)
455 if (!(i = (AvahiInterface*) avahi_interface_monitor_get_interface(m, (AvahiIfIndex) ifaddrmsg->ifa_index, (AvahiProtocol) ifaddrmsg->ifa_family)))
458 raddr.family = (AvahiProtocol) ifaddrmsg->ifa_family;
460 l = NLMSG_PAYLOAD(n, sizeof(struct ifaddrmsg));
461 a = IFA_RTA(ifaddrmsg);
463 while (RTA_OK(a, l)) {
465 switch(a->rta_type) {
467 if ((raddr.family == AVAHI_PROTO_INET6 && RTA_PAYLOAD(a) != 16) ||
468 (raddr.family == AVAHI_PROTO_INET && RTA_PAYLOAD(a) != 4))
471 memcpy(raddr.data.data, RTA_DATA(a), RTA_PAYLOAD(a));
486 if (n->nlmsg_type == RTM_NEWADDR) {
487 AvahiInterfaceAddress *addr;
489 if (!(addr = get_address(m, i, &raddr))) {
490 if (!(addr = avahi_new(AvahiInterfaceAddress, 1)))
494 addr->address = raddr;
496 addr->entry_group = NULL;
498 AVAHI_LLIST_PREPEND(AvahiInterfaceAddress, address, i->addresses, addr);
501 addr->flags = ifaddrmsg->ifa_flags;
502 addr->scope = ifaddrmsg->ifa_scope;
503 addr->prefix_len = ifaddrmsg->ifa_prefixlen;
505 AvahiInterfaceAddress *addr;
507 if (!(addr = get_address(m, i, &raddr)))
510 free_address(m, addr);
513 check_interface_relevant(m, i);
514 update_interface_rr(m, i, 0);
516 } else if (n->nlmsg_type == NLMSG_DONE) {
518 if (m->list == LIST_IFACE) {
520 if (netlink_list_items(m->netlink, RTM_GETADDR, &m->query_addr_seq) < 0) {
521 avahi_log_warn("NETLINK: Failed to list addrs: %s", strerror(errno));
530 if (m->list == LIST_DONE) {
531 check_all_interfaces_relevant(m);
532 avahi_update_host_rrs(m, 0);
533 avahi_log_info("Network interface enumeration completed.");
536 } else if (n->nlmsg_type == NLMSG_ERROR && (n->nlmsg_seq == m->query_link_seq || n->nlmsg_seq == m->query_addr_seq)) {
537 struct nlmsgerr *e = NLMSG_DATA (n);
540 avahi_log_warn("NETLINK: Failed to browse: %s", strerror(-e->error));
544 AvahiInterfaceMonitor *avahi_interface_monitor_new(AvahiServer *s) {
545 AvahiInterfaceMonitor *m = NULL;
547 if (!(m = avahi_new0(AvahiInterfaceMonitor, 1)))
548 return NULL; /* OOM */
551 if (!(m->netlink = avahi_netlink_new(s->poll_api, RTMGRP_LINK|RTMGRP_IPV4_IFADDR|RTMGRP_IPV6_IFADDR, netlink_callback, m)))
554 m->hashmap = avahi_hashmap_new(avahi_int_hash, avahi_int_equal, NULL, NULL);
556 AVAHI_LLIST_HEAD_INIT(AvahiInterface, m->interfaces);
557 AVAHI_LLIST_HEAD_INIT(AvahiHwInterface, m->hw_interfaces);
559 if (netlink_list_items(m->netlink, RTM_GETLINK, &m->query_link_seq) < 0)
562 m->list = LIST_IFACE;
567 avahi_interface_monitor_free(m);
571 void avahi_interface_monitor_sync(AvahiInterfaceMonitor *m) {
574 while (m->list != LIST_DONE) {
575 if (!avahi_netlink_work(m->netlink, 1))
580 void avahi_interface_monitor_free(AvahiInterfaceMonitor *m) {
583 while (m->hw_interfaces)
584 free_hw_interface(m, m->hw_interfaces, 1);
586 assert(!m->interfaces);
590 avahi_netlink_free(m->netlink);
593 avahi_hashmap_free(m->hashmap);
599 AvahiInterface* avahi_interface_monitor_get_interface(AvahiInterfaceMonitor *m, AvahiIfIndex idx, AvahiProtocol protocol) {
600 AvahiHwInterface *hw;
605 assert(protocol != AVAHI_PROTO_UNSPEC);
607 if (!(hw = avahi_interface_monitor_get_hw_interface(m, idx)))
610 for (i = hw->interfaces; i; i = i->by_hardware_next)
611 if (i->protocol == protocol)
617 AvahiHwInterface* avahi_interface_monitor_get_hw_interface(AvahiInterfaceMonitor *m, AvahiIfIndex idx) {
621 return avahi_hashmap_lookup(m->hashmap, &idx);
624 void avahi_interface_send_packet_unicast(AvahiInterface *i, AvahiDnsPacket *p, const AvahiAddress *a, uint16_t port) {
629 if (!avahi_interface_relevant(i))
632 assert(!a || a->family == i->protocol);
635 /* avahi_log_debug("unicast sending on '%s.%i' to %s:%u", i->hardware->name, i->protocol, avahi_address_snprint(t, sizeof(t), a), port); */
637 /* avahi_log_debug("multicast sending on '%s.%i'", i->hardware->name, i->protocol); */
639 if (i->protocol == AVAHI_PROTO_INET && i->monitor->server->fd_ipv4 >= 0)
640 avahi_send_dns_packet_ipv4(i->monitor->server->fd_ipv4, i->hardware->index, p, a ? &a->data.ipv4 : NULL, port);
641 else if (i->protocol == AVAHI_PROTO_INET6 && i->monitor->server->fd_ipv6 >= 0)
642 avahi_send_dns_packet_ipv6(i->monitor->server->fd_ipv6, i->hardware->index, p, a ? &a->data.ipv6 : NULL, port);
645 void avahi_interface_send_packet(AvahiInterface *i, AvahiDnsPacket *p) {
649 avahi_interface_send_packet_unicast(i, p, NULL, 0);
652 int avahi_interface_post_query(AvahiInterface *i, AvahiKey *key, int immediately) {
656 if (avahi_interface_relevant(i))
657 return avahi_query_scheduler_post(i->query_scheduler, key, immediately);
662 int avahi_interface_post_response(AvahiInterface *i, AvahiRecord *record, int flush_cache, const AvahiAddress *querier, int immediately) {
666 if (avahi_interface_relevant(i))
667 return avahi_response_scheduler_post(i->response_scheduler, record, flush_cache, querier, immediately);
672 int avahi_interface_post_probe(AvahiInterface *i, AvahiRecord *record, int immediately) {
676 if (avahi_interface_relevant(i))
677 return avahi_probe_scheduler_post(i->probe_scheduler, record, immediately);
682 int avahi_dump_caches(AvahiInterfaceMonitor *m, AvahiDumpCallback callback, void* userdata) {
686 for (i = m->interfaces; i; i = i->interface_next) {
687 if (avahi_interface_relevant(i)) {
689 snprintf(ln, sizeof(ln), ";;; INTERFACE %s.%i ;;;", i->hardware->name, i->protocol);
690 callback(ln, userdata);
691 if (avahi_cache_dump(i->cache, callback, userdata) < 0)
699 int avahi_interface_relevant(AvahiInterface *i) {
700 AvahiInterfaceAddress *a;
701 int relevant_address;
705 relevant_address = 0;
707 for (a = i->addresses; a; a = a->address_next)
708 if (avahi_interface_address_relevant(a)) {
709 relevant_address = 1;
713 /* avahi_log_debug("%p. iface-relevant: %i %i %i %i %i %i", i, relevant_address, */
714 /* (i->hardware->flags & IFF_UP), */
715 /* (i->hardware->flags & IFF_RUNNING), */
716 /* !(i->hardware->flags & IFF_LOOPBACK), */
717 /* (i->hardware->flags & IFF_MULTICAST), */
718 /* !(i->hardware->flags & IFF_POINTOPOINT)); */
721 (i->hardware->flags & IFF_UP) &&
722 (!i->monitor->server->config.use_iff_running || (i->hardware->flags & IFF_RUNNING)) &&
723 !(i->hardware->flags & IFF_LOOPBACK) &&
724 (i->hardware->flags & IFF_MULTICAST) &&
725 !(i->hardware->flags & IFF_POINTOPOINT) &&
729 int avahi_interface_address_relevant(AvahiInterfaceAddress *a) {
730 AvahiInterfaceAddress *b;
733 /* Publish public IP addresses */
734 if (a->scope == RT_SCOPE_UNIVERSE ||
735 a->scope == RT_SCOPE_SITE)
738 if (a->scope == RT_SCOPE_LINK) {
740 /* Publish link local IP addresses if they are the only ones on the link */
741 for (b = a->interface->addresses; b; b = b->address_next) {
745 if (b->scope == RT_SCOPE_UNIVERSE ||
746 b->scope == RT_SCOPE_SITE)
756 int avahi_interface_match(AvahiInterface *i, AvahiIfIndex idx, AvahiProtocol protocol) {
759 if (idx > 0 && idx != i->hardware->index)
762 if (protocol != AVAHI_PROTO_UNSPEC && protocol != i->protocol)
768 void avahi_interface_monitor_walk(AvahiInterfaceMonitor *m, AvahiIfIndex interface, AvahiProtocol protocol, AvahiInterfaceMonitorWalkCallback callback, void* userdata) {
773 if (protocol != AVAHI_PROTO_UNSPEC) {
776 if ((i = avahi_interface_monitor_get_interface(m, interface, protocol)))
777 callback(m, i, userdata);
780 AvahiHwInterface *hw;
783 if ((hw = avahi_interface_monitor_get_hw_interface(m, interface)))
784 for (i = hw->interfaces; i; i = i->by_hardware_next)
785 if (avahi_interface_match(i, interface, protocol))
786 callback(m, i, userdata);
792 for (i = m->interfaces; i; i = i->interface_next)
793 if (avahi_interface_match(i, interface, protocol))
794 callback(m, i, userdata);
798 void avahi_update_host_rrs(AvahiInterfaceMonitor *m, int remove_rrs) {
799 AvahiHwInterface *hw;
803 for (hw = m->hw_interfaces; hw; hw = hw->hardware_next)
804 update_hw_interface_rr(m, hw, remove_rrs);
807 int avahi_address_is_local(AvahiInterfaceMonitor *m, const AvahiAddress *a) {
809 AvahiInterfaceAddress *ia;
813 for (i = m->interfaces; i; i = i->interface_next)
814 for (ia = i->addresses; ia; ia = ia->address_next)
815 if (avahi_address_cmp(a, &ia->address) == 0)
821 int avahi_interface_address_on_link(AvahiInterface *i, const AvahiAddress *a) {
822 AvahiInterfaceAddress *ia;
827 if (a->family != i->protocol)
830 for (ia = i->addresses; ia; ia = ia->address_next) {
832 if (a->family == AVAHI_PROTO_INET) {
835 m = ~(((uint32_t) -1) >> ia->prefix_len);
837 if ((ntohl(a->data.ipv4.address) & m) == (ntohl(ia->address.data.ipv4.address) & m))
842 assert(a->family == AVAHI_PROTO_INET6);
846 for (j = 0; j < 16; j++) {
860 if ((a->data.ipv6.address[j] & m) != (ia->address.data.ipv6.address[j] & m))
869 int avahi_interface_has_address(AvahiInterfaceMonitor *m, AvahiIfIndex iface, const AvahiAddress *a) {
871 AvahiInterfaceAddress *j;
874 assert(iface != AVAHI_IF_UNSPEC);
877 if (!(i = avahi_interface_monitor_get_interface(m, iface, a->family)))
880 for (j = i->addresses; j; j = j->address_next)
881 if (avahi_address_cmp(a, &j->address) == 0)