summaryrefslogtreecommitdiffstats
path: root/avahi-core/avahi-test.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-05-20 23:03:57 +0000
committerLennart Poettering <lennart@poettering.net>2005-05-20 23:03:57 +0000
commita29887070855153ac64a3503e2f0004c2056f8e8 (patch)
treeb90665b577d9fcdce3c63cd1bfcf59f7938fdca1 /avahi-core/avahi-test.c
parent26358a4c4a8ae0ca68f08054e367aa3687681445 (diff)
* rename AvahiSubscription to AvahiRecordResolver
* implement AvahiHostNameResolver git-svn-id: file:///home/lennart/svn/public/avahi/trunk@80 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core/avahi-test.c')
-rw-r--r--avahi-core/avahi-test.c31
1 files changed, 22 insertions, 9 deletions
diff --git a/avahi-core/avahi-test.c b/avahi-core/avahi-test.c
index fc1426f..89dc8f8 100644
--- a/avahi-core/avahi-test.c
+++ b/avahi-core/avahi-test.c
@@ -46,16 +46,16 @@ static gboolean dump_timeout(gpointer data) {
return TRUE;
}
-static void subscription(AvahiSubscription *s, AvahiRecord *r, gint interface, guchar protocol, AvahiSubscriptionEvent event, gpointer userdata) {
+static void record_resolver_callback(AvahiRecordResolver *r, gint interface, guchar protocol, AvahiBrowserEvent event, AvahiRecord *record, gpointer userdata) {
gchar *t;
- g_assert(s);
g_assert(r);
+ g_assert(record);
g_assert(interface > 0);
g_assert(protocol != AF_UNSPEC);
- g_message("SUBSCRIPTION: record [%s] on %i.%i is %s", t = avahi_record_to_string(r), interface, protocol,
- event == AVAHI_SUBSCRIPTION_NEW ? "new" : "removed");
+ g_message("SUBSCRIPTION: record [%s] on %i.%i is %s", t = avahi_record_to_string(record), interface, protocol,
+ event == AVAHI_BROWSER_NEW ? "new" : "removed");
g_free(t);
}
@@ -122,30 +122,43 @@ static void create_entries(gboolean new_name) {
avahi_entry_group_commit(group);
}
+
+static void hnr_callback(AvahiHostNameResolver *r, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *hostname, const AvahiAddress *a, gpointer userdata) {
+ gchar t[64];
+
+ avahi_address_snprint(t, sizeof(t), a);
+
+ g_message("HNR: (%i.%i) %s -> %s [%s]", iface, protocol, hostname, t, event == AVAHI_BROWSER_NEW ? "new" : "remove");
+}
+
int main(int argc, char *argv[]) {
GMainLoop *loop = NULL;
- AvahiSubscription *s;
+ AvahiRecordResolver *r;
+ AvahiHostNameResolver *hnr;
AvahiKey *k;
AvahiServerConfig config;
avahi_server_config_init(&config);
- config.host_name = g_strdup("test");
+/* config.host_name = g_strdup("test"); */
server = avahi_server_new(NULL, &config, server_callback, NULL);
avahi_server_config_free(&config);
k = avahi_key_new("_http._tcp.local", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_PTR);
- s = avahi_subscription_new(server, k, 0, AF_UNSPEC, subscription, NULL);
+ r = avahi_record_resolver_new(server, 0, AF_UNSPEC, k, record_resolver_callback, NULL);
avahi_key_unref(k);
+ hnr = avahi_host_name_resolver_new(server, 0, AF_UNSPEC, "ecstasy.local", hnr_callback, NULL);
+
loop = g_main_loop_new(NULL, FALSE);
/* g_timeout_add(1000*5, dump_timeout, server); */
-/* g_timeout_add(1000*30, quit_timeout, loop); */
+ g_timeout_add(1000*30, quit_timeout, loop);
g_main_loop_run(loop);
g_main_loop_unref(loop);
- avahi_subscription_free(s);
+ avahi_record_resolver_free(r);
+ avahi_host_name_resolver_free(hnr);
if (group)
avahi_entry_group_free(group);