summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-02-20 16:21:29 +0000
committerLennart Poettering <lennart@poettering.net>2006-02-20 16:21:29 +0000
commit7c171df2b2ae4d3f2cbab669d5b5b96562bdd9a8 (patch)
treecaa8ab150b71c1dd7286300495718c067024125d
parent187fe65eead4e4afdfe64b1b1ee72d276ca10d51 (diff)
reverse 1144, since it broke more things than it fixed
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1151 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--avahi-client/client.h2
-rw-r--r--avahi-client/lookup.h14
-rw-r--r--avahi-client/publish.h2
-rw-r--r--avahi-common/simple-watch.h2
-rw-r--r--avahi-common/thread-watch.h2
-rw-r--r--avahi-common/watch.h4
-rw-r--r--avahi-core/core.h2
-rw-r--r--avahi-core/lookup.h14
-rw-r--r--avahi-core/publish.h2
-rw-r--r--avahi-glib/glib-watch.h3
10 files changed, 23 insertions, 24 deletions
diff --git a/avahi-client/client.h b/avahi-client/client.h
index 87c275b..16fde91 100644
--- a/avahi-client/client.h
+++ b/avahi-client/client.h
@@ -38,7 +38,7 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiClient A connection context */
+/** A connection context */
typedef struct AvahiClient AvahiClient;
/** States of a client object, a superset of AvahiServerState */
diff --git a/avahi-client/lookup.h b/avahi-client/lookup.h
index 0087bdc..89d1fb2 100644
--- a/avahi-client/lookup.h
+++ b/avahi-client/lookup.h
@@ -40,25 +40,25 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiDomainBrowser A domain browser object */
+/** A domain browser object */
typedef struct AvahiDomainBrowser AvahiDomainBrowser;
-/** \struct AvahiServiceBrowser A service browser object */
+/** A service browser object */
typedef struct AvahiServiceBrowser AvahiServiceBrowser;
-/** \struct AvahiServiceTypeBrowser A service type browser object */
+/** A service type browser object */
typedef struct AvahiServiceTypeBrowser AvahiServiceTypeBrowser;
-/** \struct AvahiServiceResolver A service resolver object */
+/** A service resolver object */
typedef struct AvahiServiceResolver AvahiServiceResolver;
-/** \struct AvahiHostNameResolver A service resolver object */
+/** A service resolver object */
typedef struct AvahiHostNameResolver AvahiHostNameResolver;
-/** \struct AvahiAddressResolver An address resolver object */
+/** An address resolver object */
typedef struct AvahiAddressResolver AvahiAddressResolver;
-/** \struct AvahiRecordBrowser A record browser object */
+/** A record browser object */
typedef struct AvahiRecordBrowser AvahiRecordBrowser;
/** The function prototype for the callback of an AvahiDomainBrowser */
diff --git a/avahi-client/publish.h b/avahi-client/publish.h
index 9deccf1..053ea88 100644
--- a/avahi-client/publish.h
+++ b/avahi-client/publish.h
@@ -41,7 +41,7 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiEntryGroup An entry group object */
+/** An entry group object */
typedef struct AvahiEntryGroup AvahiEntryGroup;
/** The function prototype for the callback of an AvahiEntryGroup */
diff --git a/avahi-common/simple-watch.h b/avahi-common/simple-watch.h
index c3d799d..7c83db3 100644
--- a/avahi-common/simple-watch.h
+++ b/avahi-common/simple-watch.h
@@ -30,7 +30,7 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiSimplePoll A main loop object. Main loops of this type aren't very flexible
+/** A main loop object. Main loops of this type aren't very flexible
* since they only support a single wakeup type. Nevertheless it
* should suffice for small test and example applications. */
typedef struct AvahiSimplePoll AvahiSimplePoll;
diff --git a/avahi-common/thread-watch.h b/avahi-common/thread-watch.h
index 1d674ad..469ffe5 100644
--- a/avahi-common/thread-watch.h
+++ b/avahi-common/thread-watch.h
@@ -30,7 +30,7 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiThreadedPoll A main loop object that runs an AvahiSimplePoll in its own thread. \since 0.6.4 */
+/** A main loop object that runs an AvahiSimplePoll in its own thread. \since 0.6.4 */
typedef struct AvahiThreadedPoll AvahiThreadedPoll;
/** Create a new event loop object. This will allocate the internal
diff --git a/avahi-common/watch.h b/avahi-common/watch.h
index c779a58..6d1a36e 100644
--- a/avahi-common/watch.h
+++ b/avahi-common/watch.h
@@ -31,10 +31,10 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiWatch An I/O watch object */
+/** An I/O watch object */
typedef struct AvahiWatch AvahiWatch;
-/** \struct AvahiTimeout A timeout watch object */
+/** A timeout watch object */
typedef struct AvahiTimeout AvahiTimeout;
/** An event polling abstraction object */
diff --git a/avahi-core/core.h b/avahi-core/core.h
index d1c60cc..e73abd2 100644
--- a/avahi-core/core.h
+++ b/avahi-core/core.h
@@ -24,7 +24,7 @@
/** \file core.h The Avahi Multicast DNS and DNS Service Discovery implementation. */
-/** \struct AvahiServer An mDNS responder object */
+/** An mDNS responder object */
typedef struct AvahiServer AvahiServer;
#include <avahi-common/cdecl.h>
diff --git a/avahi-core/lookup.h b/avahi-core/lookup.h
index 8395b07..0ce6fe8 100644
--- a/avahi-core/lookup.h
+++ b/avahi-core/lookup.h
@@ -27,25 +27,25 @@
/** \example core-browse-services.c Example how to browse for DNS-SD
* services using an embedded mDNS stack. */
-/** \struct AvahiSRecordBrowser A browsing object for arbitrary RRs */
+/** A browsing object for arbitrary RRs */
typedef struct AvahiSRecordBrowser AvahiSRecordBrowser;
-/** \struct AvahiSHostNameResolve rA host name to IP adddress resolver object */
+/** A host name to IP adddress resolver object */
typedef struct AvahiSHostNameResolver AvahiSHostNameResolver;
-/** \struct AvahiSAddressResolver An IP address to host name resolver object ("reverse lookup") */
+/** An IP address to host name resolver object ("reverse lookup") */
typedef struct AvahiSAddressResolver AvahiSAddressResolver;
-/** \struct AvahiSDomainBrowser A local domain browsing object. May be used to enumerate domains used on the local LAN */
+/** A local domain browsing object. May be used to enumerate domains used on the local LAN */
typedef struct AvahiSDomainBrowser AvahiSDomainBrowser;
-/** \struct AvahiSServiceTypeBrowser A DNS-SD service type browsing object. May be used to enumerate the service types of all available services on the local LAN */
+/** A DNS-SD service type browsing object. May be used to enumerate the service types of all available services on the local LAN */
typedef struct AvahiSServiceTypeBrowser AvahiSServiceTypeBrowser;
-/** \struct AvahiSServiceBrowser A DNS-SD service browser. Use this to enumerate available services of a certain kind on the local LAN. Use AvahiSServiceResolver to get specific service data like address and port for a service. */
+/** A DNS-SD service browser. Use this to enumerate available services of a certain kind on the local LAN. Use AvahiSServiceResolver to get specific service data like address and port for a service. */
typedef struct AvahiSServiceBrowser AvahiSServiceBrowser;
-/** \struct AvahiSServiceResolver A DNS-SD service resolver. Use this to retrieve addres, port and TXT data for a DNS-SD service */
+/** A DNS-SD service resolver. Use this to retrieve addres, port and TXT data for a DNS-SD service */
typedef struct AvahiSServiceResolver AvahiSServiceResolver;
#include <avahi-common/cdecl.h>
diff --git a/avahi-core/publish.h b/avahi-core/publish.h
index 9edd4cb..77c49af 100644
--- a/avahi-core/publish.h
+++ b/avahi-core/publish.h
@@ -28,7 +28,7 @@
* service using an embedded mDNS stack. It behaves like a network
* printer registering both an IPP and a BSD LPR service. */
-/** \struct AvahiSEntryGroup A group of locally registered DNS RRs */
+/** A group of locally registered DNS RRs */
typedef struct AvahiSEntryGroup AvahiSEntryGroup;
#include <avahi-common/cdecl.h>
diff --git a/avahi-glib/glib-watch.h b/avahi-glib/glib-watch.h
index f66be70..895a686 100644
--- a/avahi-glib/glib-watch.h
+++ b/avahi-glib/glib-watch.h
@@ -31,8 +31,7 @@
AVAHI_C_DECL_BEGIN
-/** \struct AvahiGLibPoll
- * GLib main loop adapter. You can safely cast this into a GSource */
+/** GLib main loop adapter. You can safely cast this into a GSource */
typedef struct AvahiGLibPoll AvahiGLibPoll;
/** Create a new GLib main loop adapter attached to the specified