]> git.meshlink.io Git - catta/blob - avahi-core/resolve-address.c
* fix pkgconfig file
[catta] / avahi-core / resolve-address.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
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.
10  
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.
15  
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
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include "browse.h"
27 #include "util.h"
28
29 struct AvahiAddressResolver {
30     AvahiServer *server;
31     AvahiAddress address;
32     
33     AvahiRecordBrowser *record_browser;
34
35     AvahiAddressResolverCallback callback;
36     gpointer userdata;
37
38     AvahiTimeEvent *time_event;
39
40     AVAHI_LLIST_FIELDS(AvahiAddressResolver, resolver);
41 };
42
43 static void finish(AvahiAddressResolver *r, gint interface, guchar protocol, AvahiResolverEvent event, AvahiRecord *record) {
44     g_assert(r);
45     
46     avahi_record_browser_free(r->record_browser);
47     r->record_browser = NULL;
48
49     avahi_time_event_queue_remove(r->server->time_event_queue, r->time_event);
50     r->time_event = NULL;
51
52     r->callback(r, interface, protocol, event, &r->address, record ? record->data.ptr.name : NULL, r->userdata);
53 }
54
55 static void record_browser_callback(AvahiRecordBrowser*rr, gint interface, guchar protocol, AvahiBrowserEvent event, AvahiRecord *record, gpointer userdata) {
56     AvahiAddressResolver *r = userdata;
57
58     g_assert(rr);
59     g_assert(record);
60     g_assert(r);
61
62     if (!(event == AVAHI_BROWSER_NEW))
63         return;
64
65     g_assert(record->key->type == AVAHI_DNS_TYPE_PTR);
66
67     finish(r, interface, protocol, AVAHI_RESOLVER_FOUND, record);
68 }
69
70 static void time_event_callback(AvahiTimeEvent *e, void *userdata) {
71     AvahiAddressResolver *r = userdata;
72     
73     g_assert(e);
74     g_assert(r);
75
76     finish(r, -1, AF_UNSPEC, AVAHI_RESOLVER_TIMEOUT, NULL);
77 }
78
79 AvahiAddressResolver *avahi_address_resolver_new(AvahiServer *server, gint interface, guchar protocol, const AvahiAddress *address, AvahiAddressResolverCallback callback, gpointer userdata) {
80     AvahiAddressResolver *r;
81     AvahiKey *k;
82     gchar *n;
83     GTimeVal tv;
84
85     g_assert(server);
86     g_assert(address);
87     g_assert(callback);
88
89     g_assert(address->family == AF_INET || address->family == AF_INET6);
90
91     r = g_new(AvahiAddressResolver, 1);
92     r->server = server;
93     r->address = *address;
94     r->callback = callback;
95     r->userdata = userdata;
96
97     avahi_elapse_time(&tv, 1000, 0);
98     r->time_event = avahi_time_event_queue_add(server->time_event_queue, &tv, time_event_callback, r);
99
100     AVAHI_LLIST_PREPEND(AvahiAddressResolver, resolver, server->address_resolvers, r);
101     
102     if (address->family == AF_INET)
103         n = avahi_reverse_lookup_name_ipv4(&address->data.ipv4);
104     else 
105         n = avahi_reverse_lookup_name_ipv6_arpa(&address->data.ipv6);
106     
107     k = avahi_key_new(n, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_PTR);
108     g_free(n);
109     
110     r->record_browser = avahi_record_browser_new(server, interface, protocol, k, record_browser_callback, r);
111     avahi_key_unref(k);
112
113     
114     return r;
115 }
116
117 void avahi_address_resolver_free(AvahiAddressResolver *r) {
118     g_assert(r);
119
120     AVAHI_LLIST_REMOVE(AvahiAddressResolver, resolver, r->server->address_resolvers, r);
121
122     if (r->record_browser)
123         avahi_record_browser_free(r->record_browser);
124
125     if (r->time_event)
126         avahi_time_event_queue_remove(r->server->time_event_queue, r->time_event);
127     
128     g_free(r);
129 }