]> git.meshlink.io Git - catta/blob - avahi-core/querier-test.c
s/AVAHI_LOOKUP_CALLBACK/AVAHI_LOOKUP_RESULT/g
[catta] / avahi-core / querier-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 <stdlib.h>
27 #include <assert.h>
28
29 #include <avahi-common/malloc.h>
30 #include <avahi-common/simple-watch.h>
31 #include <avahi-common/alternative.h>
32 #include <avahi-core/core.h>
33 #include <avahi-core/log.h>
34 #include <avahi-core/publish.h>
35 #include <avahi-core/lookup.h>
36
37 #define DOMAIN NULL
38 #define SERVICE_TYPE "_http._tcp"
39
40 static AvahiSServiceBrowser *service_browser1 = NULL, *service_browser2 = NULL;
41 static const AvahiPoll * poll_api = NULL;
42 static AvahiServer *server = NULL;
43 static AvahiSimplePoll *simple_poll;
44
45 static const char *browser_event_to_string(AvahiBrowserEvent event) {
46     switch (event) {
47         case AVAHI_BROWSER_NEW : return "NEW";
48         case AVAHI_BROWSER_REMOVE : return "REMOVE";
49         case AVAHI_BROWSER_CACHE_EXHAUSTED : return "CACHE_EXHAUSTED";
50         case AVAHI_BROWSER_ALL_FOR_NOW : return "ALL_FOR_NOW";
51         case AVAHI_BROWSER_FAILURE : return "FAILURE";
52         case AVAHI_BROWSER_NOT_FOUND : return "NOT_FOUND";
53     }
54
55     abort();
56 }
57
58 static void sb_callback(
59     AvahiSServiceBrowser *b,
60     AvahiIfIndex iface,
61     AvahiProtocol protocol,
62     AvahiBrowserEvent event,
63     const char *name,
64     const char *service_type,
65     const char *domain,
66     AvahiLookupResultFlags flags,
67     void* userdata) {
68     avahi_log_debug("SB%i: (%i.%s) <%s> as <%s> in <%s> [%s] cached=%i", b == service_browser1 ? 1 : 2, iface, avahi_proto_to_string(protocol), name, service_type, domain, browser_event_to_string(event), !!(flags & AVAHI_LOOKUP_RESULT_CACHED));
69 }
70
71 static void create_second_service_browser(AvahiTimeout *timeout, void* userdata) {
72
73     service_browser2 = avahi_s_service_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, SERVICE_TYPE, DOMAIN, 0, sb_callback, NULL);
74     assert(service_browser2);
75     
76     poll_api->timeout_free(timeout);
77 }
78
79 static void quit(AvahiTimeout *timeout, void *userdata) {
80     avahi_simple_poll_quit(simple_poll);
81 }
82
83 int main(int argc, char *argv[]) {
84     struct timeval tv;
85     AvahiServerConfig config;
86     
87     simple_poll = avahi_simple_poll_new();
88     assert(simple_poll);
89     
90     poll_api = avahi_simple_poll_get(simple_poll);
91     assert(poll_api);
92
93     avahi_server_config_init(&config);
94     config.publish_hinfo = 0;
95     config.publish_addresses = 0;
96     config.publish_workstation = 0;
97     config.publish_domain = 0;
98
99     avahi_address_parse("192.168.50.1", AVAHI_PROTO_UNSPEC, &config.wide_area_servers[0]);
100     config.n_wide_area_servers = 1;
101     config.enable_wide_area = 1;
102     
103     server = avahi_server_new(poll_api, &config, NULL, NULL, NULL);
104     assert(server);
105     avahi_server_config_free(&config);
106
107     service_browser1 = avahi_s_service_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, SERVICE_TYPE, DOMAIN, 0, sb_callback, NULL);
108     assert(service_browser1);
109     
110     poll_api->timeout_new(poll_api, avahi_elapse_time(&tv, 10000, 0), create_second_service_browser, NULL);
111
112     poll_api->timeout_new(poll_api, avahi_elapse_time(&tv, 60000, 0), quit, NULL);
113
114     
115     for (;;)
116         if (avahi_simple_poll_iterate(simple_poll, -1) != 0)
117             break;
118
119     avahi_server_free(server);
120     avahi_simple_poll_free(simple_poll);
121     
122     return 0;
123 }