From 8f1c6544deb351d9df51114c7f6e5f25e026f73e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 27 Jul 2005 23:13:52 +0000 Subject: * swap order of "type" and "name" arguments of avahi_server_add_service() and friends git-svn-id: file:///home/lennart/svn/public/avahi/trunk@179 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-core/core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'avahi-core/core.h') diff --git a/avahi-core/core.h b/avahi-core/core.h index e7e6268..a41aee6 100644 --- a/avahi-core/core.h +++ b/avahi-core/core.h @@ -280,8 +280,8 @@ gint avahi_server_add_service( AvahiEntryGroup *g, AvahiIfIndex interface, AvahiProtocol protocol, - const gchar *type, /**< DNS-SD type, e.g. "_http._tcp" */ const gchar *name, /**< Service name, e.g. "Lennart's Files" */ + const gchar *type, /**< DNS-SD type, e.g. "_http._tcp" */ const gchar *domain, const gchar *host, /**< Host name where this servcie resides, or NULL if on the local host */ guint16 port, /**< Port number of the service */ @@ -293,8 +293,8 @@ gint avahi_server_add_service_va( AvahiEntryGroup *g, AvahiIfIndex interface, AvahiProtocol protocol, - const gchar *type, const gchar *name, + const gchar *type, const gchar *domain, const gchar *host, guint16 port, @@ -306,8 +306,8 @@ gint avahi_server_add_service_strlst( AvahiEntryGroup *g, AvahiIfIndex interface, AvahiProtocol protocol, - const gchar *type, const gchar *name, + const gchar *type, const gchar *domain, const gchar *host, guint16 port, -- cgit