[asterisk-commits] russell: trunk r108857 - /trunk/include/asterisk/dnsmgr.h
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Mar 14 16:20:36 CDT 2008
Author: russell
Date: Fri Mar 14 16:20:36 2008
New Revision: 108857
URL: http://svn.digium.com/view/asterisk?view=rev&rev=108857
Log:
Doxygenify dnsmgr.h
Modified:
trunk/include/asterisk/dnsmgr.h
Modified: trunk/include/asterisk/dnsmgr.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/dnsmgr.h?view=diff&rev=108857&r1=108856&r2=108857
==============================================================================
--- trunk/include/asterisk/dnsmgr.h (original)
+++ trunk/include/asterisk/dnsmgr.h Fri Mar 14 16:20:36 2008
@@ -29,12 +29,52 @@
#include "asterisk/network.h"
+/*!
+ * \brief A DNS manager entry
+ *
+ * This is an opaque type.
+ */
struct ast_dnsmgr_entry;
+/*!
+ * \brief Allocate a new DNS manager entry
+ *
+ * \arg name the hostname
+ * \arg result where the DNS manager should store the IP address as it refreshes it.
+ * it.
+ *
+ * This function allocates a new DNS manager entry object, and fills it with the
+ * provided hostname and IP address. This function does not force an initial lookup
+ * of the IP address. So, generally, this should be used when the initial address
+ * is already known.
+ *
+ * \return a DNS manager entry
+ */
struct ast_dnsmgr_entry *ast_dnsmgr_get(const char *name, struct in_addr *result);
+/*!
+ * \brief Free a DNS manager entry
+ *
+ * \arg entry the DNS manager entry to free
+ *
+ * \return nothing
+ */
void ast_dnsmgr_release(struct ast_dnsmgr_entry *entry);
+/*!
+ * \brief Allocate and initialize a DNS manager entry
+ *
+ * \arg name the hostname
+ * \arg result where to store the IP address as the DNS manager refreshes it
+ * \arg dnsmgr Where to store the allocate DNS manager entry
+ *
+ * This function allocates a new DNS manager entry object, and fills it with
+ * the provided hostname and IP address. This function _does_ force an initial
+ * lookup, so it may block for some period of time.
+ *
+ * \retval 0 success
+ * \retval non-zero failure
+ */
int ast_dnsmgr_lookup(const char *name, struct in_addr *result, struct ast_dnsmgr_entry **dnsmgr);
/*!
More information about the asterisk-commits
mailing list