]> git.meshlink.io Git - catta/blob - avahi-client/srv-test.c
1a453bc2e08a67bc22ffc370f71bd5ee7e1da340
[catta] / avahi-client / srv-test.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 <stdio.h>
27 #include <assert.h>
28
29 #include <avahi-client/client.h>
30 #include <avahi-common/error.h>
31 #include <avahi-common/simple-watch.h>
32 #include <avahi-common/malloc.h>
33
34 static void callback(
35     AvahiServiceResolver *r,
36     AvahiIfIndex interface,
37     AvahiProtocol protocol,
38     AvahiResolverEvent event,
39     const char *name,
40     const char *type,
41     const char *domain,
42     const char *host_name,
43     const AvahiAddress *a,
44     uint16_t port,
45     AvahiStringList *txt,
46     AvahiLookupResultFlags flags,
47     void *userdata) {
48
49     fprintf(stderr, "%i name=%s type=%s domain=%s host=%s\n", event, name, type, domain, host_name);
50 }
51
52 int main(int argc, char *argv[]) {
53
54     AvahiSimplePoll *simple_poll;
55     const AvahiPoll *poll_api;
56     AvahiClient *client;
57     AvahiServiceResolver *r;
58     
59     simple_poll = avahi_simple_poll_new();
60     assert(simple_poll);
61     
62     poll_api = avahi_simple_poll_get(simple_poll);
63     assert(poll_api);
64     
65     client = avahi_client_new(poll_api, NULL, NULL, NULL);
66     assert(client);
67
68     r = avahi_service_resolver_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, NULL, "_domain._udp", "0pointer.de", AVAHI_PROTO_UNSPEC, AVAHI_LOOKUP_NO_TXT, callback, simple_poll);
69     assert(r);
70
71     for (;;)
72         if (avahi_simple_poll_iterate(simple_poll, -1) != 0)
73             break;
74
75     avahi_client_free(client);
76     avahi_simple_poll_free(simple_poll);
77
78     return 0;
79 }