summaryrefslogtreecommitdiffstats
path: root/avahi-client/client.h
diff options
context:
space:
mode:
authorTrent Lloyd <lathiat@bur.st>2005-08-08 18:03:51 +0000
committerTrent Lloyd <lathiat@bur.st>2005-08-08 18:03:51 +0000
commit7540df5ed6b383ec93f5a4f10ab2d08f9b9869e4 (patch)
treee2e023eabbf40d5ffa8716ba5985e25d440b3885 /avahi-client/client.h
parent9ad2a95c80ab0f9cf48d3f58e9a7ed6f06685c34 (diff)
* Move avahi-core/llist.h to avahi-common/llist.h, not installed.
* avahi-client/ - Add copyright notice - Remove glib, various cleanups - Remove alternative host/service functions (available in avahi-common) git-svn-id: file:///home/lennart/svn/public/avahi/trunk@275 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-client/client.h')
-rw-r--r--avahi-client/client.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/avahi-client/client.h b/avahi-client/client.h
index 5b0e910..0fb6419 100644
--- a/avahi-client/client.h
+++ b/avahi-client/client.h
@@ -1,7 +1,7 @@
#ifndef fooclienthfoo
#define fooclienthfoo
-/* $Id: core.h 98 2005-06-04 18:56:52Z lathiat $ */
+/* $Id$ */
/***
This file is part of avahi.
@@ -28,12 +28,9 @@
AVAHI_C_DECL_BEGIN
-typedef struct _AvahiClientPriv AvahiClientPriv;
+typedef struct _AvahiClient AvahiClient;
-typedef struct _AvahiClient {
- int serverid;
- AvahiClientPriv *priv;
-} AvahiClient;
+typedef struct _AvahiEntryGroup AvahiEntryGroup;
/** Creates a new client instance */
AvahiClient* avahi_client_new ();
@@ -50,12 +47,6 @@ 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