summaryrefslogtreecommitdiffstats
path: root/avahi-core
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-07-29 01:06:21 +0000
committerLennart Poettering <lennart@poettering.net>2005-07-29 01:06:21 +0000
commit1e4fbfdf6b633cc3e3af9ba01b7baaa6994ffd38 (patch)
tree7fb6ae4a9ba753e85c5def81836d7c21b213392c /avahi-core
parentfb4c7136077bdce1fb168e39561d2dfadbd3df61 (diff)
DBUS: implement ServiceBrowser
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@188 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core')
-rw-r--r--avahi-core/core.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/avahi-core/core.h b/avahi-core/core.h
index 8fa30e2..39a1db6 100644
--- a/avahi-core/core.h
+++ b/avahi-core/core.h
@@ -501,9 +501,9 @@ typedef void (*AvahiServiceBrowserCallback)(
AvahiIfIndex interface,
AvahiProtocol protocol,
AvahiBrowserEvent event,
- const gchar *name, /**< Service name, e.g. "Lennart's Files" */
- const gchar *type, /**< DNS-SD type, e.g. "_http._tcp" */
- const gchar *domain, /**< Domain of this service, e.g. "local" */
+ const gchar *name /**< Service name, e.g. "Lennart's Files" */,
+ const gchar *type /**< DNS-SD type, e.g. "_http._tcp" */,
+ const gchar *domain /**< Domain of this service, e.g. "local" */,
gpointer userdata);
/** Create a new AvahiServiceBrowser object. */
@@ -511,7 +511,7 @@ AvahiServiceBrowser *avahi_service_browser_new(
AvahiServer *server,
AvahiIfIndex interface,
AvahiProtocol protocol,
- const gchar *service_type, /** DNS-SD service type, e.g. "_http._tcp" */
+ const gchar *service_type /** DNS-SD service type, e.g. "_http._tcp" */,
const gchar *domain,
AvahiServiceBrowserCallback callback,
gpointer userdata);