]> git.meshlink.io Git - catta/blob - avahi-core/iface.h
* many trivial fix to make avahi compile on OpenBSD
[catta] / avahi-core / iface.h
1 #ifndef fooifacehfoo
2 #define fooifacehfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of avahi.
8  
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.
13  
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.
18  
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
22   USA.
23 ***/
24
25 typedef struct AvahiInterfaceMonitor AvahiInterfaceMonitor;
26 typedef struct AvahiInterfaceAddress AvahiInterfaceAddress;
27 typedef struct AvahiInterface AvahiInterface;
28 typedef struct AvahiHwInterface AvahiHwInterface;
29
30 #include <avahi-common/llist.h>
31 #include <avahi-common/address.h>
32
33 #include "internal.h"
34 #include "cache.h"
35 #include "response-sched.h"
36 #include "query-sched.h"
37 #include "probe-sched.h"
38 #include "dns.h"
39 #include "announce.h"
40 #include "browse.h"
41 #include "querier.h"
42
43 #ifdef HAVE_NETLINK
44 #include "iface-linux.h"
45 #elif defined(HAVE_PF_ROUTE)
46 #include "iface-pfroute.h"
47 #else
48 typedef struct AvahiInterfaceMonitorOSDep AvahiInterfaceMonitorOSDep;
49 struct AvahiInterfaceMonitorOSDep {
50         
51     unsigned query_addr_seq, query_link_seq;
52     
53     enum {
54         LIST_IFACE,
55         LIST_ADDR,
56         LIST_DONE
57     } list;
58 };
59 #endif
60
61 #define AVAHI_MAC_ADDRESS_MAX 32
62
63 struct AvahiInterfaceMonitor {
64     AvahiServer *server;
65     AvahiHashmap *hashmap;
66
67     AVAHI_LLIST_HEAD(AvahiInterface, interfaces);
68     AVAHI_LLIST_HEAD(AvahiHwInterface, hw_interfaces);
69
70     int list_complete;
71     AvahiInterfaceMonitorOSDep osdep;
72 };
73
74 struct AvahiHwInterface {
75     AvahiInterfaceMonitor *monitor;
76
77     AVAHI_LLIST_FIELDS(AvahiHwInterface, hardware);
78
79     char *name;
80     AvahiIfIndex index;
81     int flags_ok;
82     
83     unsigned mtu;
84
85     uint8_t mac_address[AVAHI_MAC_ADDRESS_MAX];
86     size_t mac_address_size;
87
88     AvahiSEntryGroup *entry_group;
89
90     AVAHI_LLIST_HEAD(AvahiInterface, interfaces);
91 };
92
93 struct AvahiInterface {
94     AvahiInterfaceMonitor *monitor;
95     AvahiHwInterface *hardware;
96
97     AVAHI_LLIST_FIELDS(AvahiInterface, interface);
98     AVAHI_LLIST_FIELDS(AvahiInterface, by_hardware);
99     
100     AvahiProtocol protocol;
101     int announcing;
102
103     AvahiCache *cache;
104
105     AvahiQueryScheduler *query_scheduler;
106     AvahiResponseScheduler * response_scheduler;
107     AvahiProbeScheduler *probe_scheduler;
108
109     AVAHI_LLIST_HEAD(AvahiInterfaceAddress, addresses);
110     AVAHI_LLIST_HEAD(AvahiAnnouncer, announcers);
111
112     AvahiHashmap *queriers_by_key;
113     AVAHI_LLIST_HEAD(AvahiQuerier, queriers);
114 };
115
116 struct AvahiInterfaceAddress {
117     AvahiInterfaceMonitor *monitor;
118     AvahiInterface *interface;
119
120     AVAHI_LLIST_FIELDS(AvahiInterfaceAddress, address);
121
122     AvahiAddress address;
123     unsigned prefix_len;
124
125     int global_scope;
126     
127     AvahiSEntryGroup *entry_group;
128 };
129
130 AvahiInterfaceMonitor *avahi_interface_monitor_new(AvahiServer *server);
131 void avahi_interface_monitor_free(AvahiInterfaceMonitor *m);
132
133 int avahi_interface_monitor_init_osdep(AvahiInterfaceMonitor *m);
134 void avahi_interface_monitor_free_osdep(AvahiInterfaceMonitor *m);
135 void avahi_interface_monitor_sync(AvahiInterfaceMonitor *m);
136
137 typedef void (*AvahiInterfaceMonitorWalkCallback)(AvahiInterfaceMonitor *m, AvahiInterface *i, void* userdata);
138 void avahi_interface_monitor_walk(AvahiInterfaceMonitor *m, AvahiIfIndex idx, AvahiProtocol protocol, AvahiInterfaceMonitorWalkCallback callback, void* userdata);
139 int avahi_dump_caches(AvahiInterfaceMonitor *m, AvahiDumpCallback callback, void* userdata);
140
141 void avahi_interface_monitor_update_rrs(AvahiInterfaceMonitor *m, int remove_rrs);
142 int avahi_address_is_local(AvahiInterfaceMonitor *m, const AvahiAddress *a);
143 void avahi_interface_monitor_check_relevant(AvahiInterfaceMonitor *m);
144
145 /* AvahiHwInterface */
146
147 AvahiHwInterface *avahi_hw_interface_new(AvahiInterfaceMonitor *m, AvahiIfIndex idx);
148 void avahi_hw_interface_free(AvahiHwInterface *hw, int send_goodbye);
149
150 void avahi_hw_interface_update_rrs(AvahiHwInterface *hw, int remove_rrs);
151 void avahi_hw_interface_check_relevant(AvahiHwInterface *hw);
152
153 AvahiHwInterface* avahi_interface_monitor_get_hw_interface(AvahiInterfaceMonitor *m, int idx);
154
155 /* AvahiInterface */
156
157 AvahiInterface* avahi_interface_new(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, AvahiProtocol protocol);
158 void avahi_interface_free(AvahiInterface *i, int send_goodbye);
159
160 void avahi_interface_update_rrs(AvahiInterface *i, int remove_rrs);
161 void avahi_interface_check_relevant(AvahiInterface *i);
162 int avahi_interface_is_relevant(AvahiInterface *i);
163
164 void avahi_interface_send_packet(AvahiInterface *i, AvahiDnsPacket *p);
165 void avahi_interface_send_packet_unicast(AvahiInterface *i, AvahiDnsPacket *p, const AvahiAddress *a, uint16_t port);
166
167 int avahi_interface_post_query(AvahiInterface *i, AvahiKey *k, int immediately);
168 int avahi_interface_post_response(AvahiInterface *i, AvahiRecord *record, int flush_cache, const AvahiAddress *querier, int immediately);
169 int avahi_interface_post_probe(AvahiInterface *i, AvahiRecord *p, int immediately);
170
171 int avahi_interface_match(AvahiInterface *i, AvahiIfIndex idx, AvahiProtocol protocol);
172 int avahi_interface_address_on_link(AvahiInterface *i, const AvahiAddress *a);
173 int avahi_interface_has_address(AvahiInterfaceMonitor *m, AvahiIfIndex iface, const AvahiAddress *a);
174
175 AvahiInterface* avahi_interface_monitor_get_interface(AvahiInterfaceMonitor *m, AvahiIfIndex idx, AvahiProtocol protocol);
176
177 /* AvahiInterfaceAddress */
178
179 AvahiInterfaceAddress *avahi_interface_address_new(AvahiInterfaceMonitor *m, AvahiInterface *i, const AvahiAddress *addr, unsigned prefix_len);
180 void avahi_interface_address_free(AvahiInterfaceAddress *a);
181
182 void avahi_interface_address_update_rrs(AvahiInterfaceAddress *a, int remove_rrs);
183 int avahi_interface_address_is_relevant(AvahiInterfaceAddress *a);
184
185 AvahiInterfaceAddress* avahi_interface_monitor_get_address(AvahiInterfaceMonitor *m, AvahiInterface *i, const AvahiAddress *raddr);
186
187 #endif