X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-client%2Fclient.h;h=5b0e9109aecdb415573fda6f2238806128f6d29d;hb=61eb92b1ba30fd4da9be7e9dc9714125c1576cca;hp=a33f1d2cdde68abab7e4c2e4ef0fae098196762c;hpb=64dff8088b43bd2f367f35e18bf02e73c8052dec;p=catta diff --git a/avahi-client/client.h b/avahi-client/client.h index a33f1d2..5b0e910 100644 --- a/avahi-client/client.h +++ b/avahi-client/client.h @@ -22,12 +22,40 @@ USA. ***/ -#include +#include -typedef struct AvahiClient { - gint serverid; +/** \file client.h Definitions and functions for the client API over D-Bus */ + +AVAHI_C_DECL_BEGIN + +typedef struct _AvahiClientPriv AvahiClientPriv; + +typedef struct _AvahiClient { + int serverid; + AvahiClientPriv *priv; } AvahiClient; +/** Creates a new client instance */ AvahiClient* avahi_client_new (); +/** Get the version of the server */ +char* avahi_client_get_version_string (AvahiClient*); + +/** Get host name */ +char* avahi_client_get_host_name (AvahiClient*); + +/** Get domain name */ +char* avahi_client_get_domain_name (AvahiClient*); + +/** Get FQDN domain name */ +char* avahi_client_get_host_name_fqdn (AvahiClient*); + +/** Get alternative host name for a host name that is taken */ +char* avahi_client_get_alternative_host_name (AvahiClient*, char*); + +/** Get alternative service name for a service name that is taken */ +char* avahi_client_get_alternative_service_name (AvahiClient*, char*); + +AVAHI_C_DECL_END + #endif