X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=examples%2Fcore-browse-services.c;h=f3bf7825d2383392ba9ed0db68c28c528250e0ea;hb=5af9f469d85a9281bc5484e9f5a8740751591dfe;hp=e72333992bc5dcaab5b7f71e760e321e5ac012a0;hpb=af548e38c2c282132ddac2a75a76218ff3be3175;p=catta diff --git a/examples/core-browse-services.c b/examples/core-browse-services.c index e723339..f3bf782 100644 --- a/examples/core-browse-services.c +++ b/examples/core-browse-services.c @@ -1,5 +1,16 @@ /* $Id$ */ +/* PLEASE NOTE * + * This file demonstrates how to use Avahi's core API, this is + * the embeddable mDNS stack for embedded applications. + * + * End user applications should *not* use this API and should use + * the DBUS or C APIs, please see + * client-browse-services.c and glib-integration.c + * + * I repeat, you probably do *not* want to use this example. + */ + /*** This file is part of avahi. @@ -34,6 +45,7 @@ #include static AvahiSimplePoll *simple_poll = NULL; +static AvahiServer *server = NULL; static void resolve_callback( AvahiSServiceResolver *r, @@ -64,7 +76,15 @@ static void resolve_callback( avahi_address_snprint(a, sizeof(a), address); t = avahi_string_list_to_string(txt); - fprintf(stderr, "\t%s:%u (%s) TXT=%s\n", host_name, port, a, t); + fprintf(stderr, + "\t%s:%u (%s)\n" + "\tTXT=%s\n" + "\tcookie is %u\n" + "\tis_local: %i\n", + host_name, port, a, + t, + avahi_string_list_get_service_cookie(txt), + avahi_server_is_service_local(server, interface, protocol, name, type, domain)); avahi_free(t); } @@ -105,7 +125,6 @@ static void browse_callback( int main(int argc, char*argv[]) { AvahiServerConfig config; - AvahiServer *server = NULL; AvahiSServiceBrowser *sb; int error; int ret = 1;