]> git.meshlink.io Git - catta/blob - libavahi-core/avahi-test.c
260c6aa5a2d16fb968121be87c4d78500421bb9a
[catta] / libavahi-core / avahi-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 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <stdlib.h>
26
27 #include "avahi.h"
28
29 static gboolean quit_timeout(gpointer data) {
30     g_main_loop_quit(data);
31     return FALSE;
32 }
33
34 static gboolean dump_timeout(gpointer data) {
35     AvahiServer *Avahi = data;
36     avahi_server_dump(Avahi, stdout);
37     return TRUE;
38 }
39
40 static void subscription(AvahiSubscription *s, AvahiRecord *r, gint interface, guchar protocol, AvahiSubscriptionEvent event, gpointer userdata) {
41     gchar *t;
42     
43     g_assert(s);
44     g_assert(r);
45     g_assert(interface > 0);
46     g_assert(protocol != AF_UNSPEC);
47
48     g_message("SUBSCRIPTION: record [%s] on %i.%i is %s", t = avahi_record_to_string(r), interface, protocol,
49               event == AVAHI_SUBSCRIPTION_NEW ? "new" : (event == AVAHI_SUBSCRIPTION_CHANGE ? "changed" : "removed"));
50
51     g_free(t);
52 }
53
54 static void entry_group_callback(AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata) {
55     g_message("entry group state: %i", state);
56 }
57
58 int main(int argc, char *argv[]) {
59     AvahiServer *avahi;
60     gchar *r;
61     GMainLoop *loop = NULL;
62     AvahiSubscription *s;
63     AvahiKey *k;
64     AvahiEntryGroup *g;
65
66     avahi = avahi_server_new(NULL);
67
68 /*     g = avahi_entry_group_new(avahi, entry_group_callback, NULL);  */
69     
70 /*    avahi_server_add_text(avahi, g, 0, AF_UNSPEC, AVAHI_ENTRY_UNIQUE, NULL, "hallo", NULL); */
71 /*      avahi_server_add_service(avahi, g, 0, AF_UNSPEC, "_http._tcp", "gurke", NULL, NULL, 80, "foo", NULL);  */
72     
73 /*     avahi_entry_group_commit(g);  */
74
75     avahi_server_dump(avahi, stdout);
76     
77     
78 /*     k = avahi_key_new("ecstasy.local.", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_ANY); */
79 /*     s = avahi_subscription_new(avahi, k, 0, AF_UNSPEC, subscription, NULL); */
80 /*     avahi_key_unref(k); */
81
82     loop = g_main_loop_new(NULL, FALSE);
83     
84   /*   g_timeout_add(1000*20, dump_timeout, Avahi); */
85 /*     g_timeout_add(1000*30, quit_timeout, loop); */
86     
87     g_main_loop_run(loop);
88     g_main_loop_unref(loop);
89
90 /*     avahi_subscription_free(s); */
91     /* avahi_entry_group_free(g);  */
92     avahi_server_free(avahi);
93     
94     return 0;
95 }