]> git.meshlink.io Git - catta/blob - avahi-compat-howl/browse-domain-test.c
implement sw_discovery_browse_domains()
[catta] / avahi-compat-howl / browse-domain-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 <assert.h>
27 #include <stdio.h>
28
29 #include "howl.h"
30
31 #define ASSERT_SW_OKAY(t) { sw_result _r; _r = (t); assert(_r == SW_OKAY); }
32 #define ASSERT_NOT_NULL(t) { const void* _r; r = (t); assert(_r); }
33
34 static sw_result reply(
35     sw_discovery discovery,
36     sw_discovery_oid oid,
37     sw_discovery_browse_status status,
38     sw_uint32 interface_index,
39     sw_const_string name,
40     sw_const_string type,
41     sw_const_string domain,
42     sw_opaque extra) {
43
44     switch (status) {
45         case SW_DISCOVERY_BROWSE_ADD_DOMAIN:
46             fprintf(stderr, "new domain %s\n", domain);
47             break;
48
49         case SW_DISCOVERY_BROWSE_REMOVE_DOMAIN:
50             fprintf(stderr, "removed domain %s\n", domain);
51             break;
52
53         case SW_DISCOVERY_BROWSE_INVALID:
54             fprintf(stderr, "some kind of failure happened: %s\n", domain);
55             break;
56             
57         default:
58             abort();
59     }
60
61     return SW_OKAY;
62 }
63
64 int main(int argc, char *argv[]) {
65     sw_discovery discovery;
66     sw_discovery_oid oid;
67     
68     ASSERT_SW_OKAY(sw_discovery_init(&discovery));
69
70     ASSERT_SW_OKAY(sw_discovery_browse_domains(discovery, 0, reply, NULL, &oid));
71     
72     ASSERT_SW_OKAY(sw_discovery_run(discovery));
73                    
74     return 0;
75 }