7 This file is part of avahi.
9 avahi is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as
11 published by the Free Software Foundation; either version 2.1 of the
12 License, or (at your option) any later version.
14 avahi is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17 Public License for more details.
19 You should have received a copy of the GNU Lesser General Public
20 License along with avahi; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
27 typedef struct AvahiInterfaceMonitor AvahiInterfaceMonitor;
28 typedef struct AvahiInterfaceAddress AvahiInterfaceAddress;
29 typedef struct AvahiInterface AvahiInterface;
30 typedef struct AvahiHwInterface AvahiHwInterface;
41 struct AvahiInterfaceMonitor {
43 AvahiNetlink *netlink;
44 GHashTable *hash_table;
46 AVAHI_LLIST_HEAD(AvahiInterface, interfaces);
47 AVAHI_LLIST_HEAD(AvahiHwInterface, hw_interfaces);
49 guint query_addr_seq, query_link_seq;
58 struct AvahiHwInterface {
59 AVAHI_LLIST_FIELDS(AvahiHwInterface, hardware);
60 AvahiInterfaceMonitor *monitor;
67 AVAHI_LLIST_HEAD(AvahiInterface, interfaces);
70 struct AvahiInterface {
71 AVAHI_LLIST_FIELDS(AvahiInterface, interface);
72 AVAHI_LLIST_FIELDS(AvahiInterface, by_hardware);
73 AvahiInterfaceMonitor *monitor;
75 AvahiHwInterface *hardware;
80 AvahiPacketScheduler *scheduler;
82 AVAHI_LLIST_HEAD(AvahiInterfaceAddress, addresses);
83 AVAHI_LLIST_HEAD(AvahiAnnouncement, announcements);
86 struct AvahiInterfaceAddress {
87 AVAHI_LLIST_FIELDS(AvahiInterfaceAddress, address);
88 AvahiInterfaceMonitor *monitor;
94 AvahiEntryGroup *entry_group;
95 AvahiInterface *interface;
98 AvahiInterfaceMonitor *avahi_interface_monitor_new(AvahiServer *server);
99 void avahi_interface_monitor_free(AvahiInterfaceMonitor *m);
101 void avahi_interface_monitor_sync(AvahiInterfaceMonitor *m);
103 AvahiInterface* avahi_interface_monitor_get_interface(AvahiInterfaceMonitor *m, gint index, guchar protocol);
104 AvahiHwInterface* avahi_interface_monitor_get_hw_interface(AvahiInterfaceMonitor *m, gint index);
106 void avahi_interface_send_packet(AvahiInterface *i, AvahiDnsPacket *p);
107 void avahi_interface_send_packet_unicast(AvahiInterface *i, AvahiDnsPacket *p, const AvahiAddress *a, guint16 port);
109 gboolean avahi_interface_post_query(AvahiInterface *i, AvahiKey *k, gboolean immediately);
110 gboolean avahi_interface_post_probe(AvahiInterface *i, AvahiRecord *p, gboolean immediately);
111 gboolean avahi_interface_post_response(AvahiInterface *i, const AvahiAddress *a, AvahiRecord *record, gboolean flush_cache, gboolean immediately);
113 void avahi_dump_caches(AvahiInterfaceMonitor *m, FILE *f);
115 gboolean avahi_interface_relevant(AvahiInterface *i);
116 gboolean avahi_interface_address_relevant(AvahiInterfaceAddress *a);
118 gboolean avahi_interface_match(AvahiInterface *i, gint index, guchar protocol);
120 typedef void (*AvahiInterfaceMonitorWalkCallback)(AvahiInterfaceMonitor *m, AvahiInterface *i, gpointer userdata);
122 void avahi_interface_monitor_walk(AvahiInterfaceMonitor *m, gint index, guchar protocol, AvahiInterfaceMonitorWalkCallback callback, gpointer userdata);