aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-09 21:22:42 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-09 21:22:42 +0000
commit3bdae19e24bf719ce75e2e4096ed9fe740c43335 (patch)
tree0719180d62267806e4f017648b09f46f0defcb4d /main
parentd815e15aad47d9fb7c053b59babcbdd4bd2d2d5e (diff)
Merged revisions 180719 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r180719 | jpeeler | 2009-03-09 15:58:17 -0500 (Mon, 09 Mar 2009) | 16 lines Add Doxygen documentation for API changes from 1.6.0 to 1.6.1 Copied from my review board description: This is a continuation of the API changes documentation started for describing changes between releases. Most of the API changes were pretty simple needing only to be brought to attention via the new "Asterisk API Changes" list. However, if you see anything that needs further explanation feel free to supplement what is there. The current method of documenting is to add (in the header file): \version <ver number> <description of changes> and then to add the function to the change list in doxyref.h on the AstAPIChanges page. I also made sure all the functions that were newly added were tagged with \since 1.6.1. I think this is a good habit to start both for the historical aspect as well as for the future ability to easily add a "New Asterisk API" page. Review: http://reviewboard.digium.com/r/190/ ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@180740 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/devicestate.c1
-rw-r--r--main/enum.c8
-rw-r--r--main/tcptls.c9
3 files changed, 0 insertions, 18 deletions
diff --git a/main/devicestate.c b/main/devicestate.c
index 1601ee12c..7a4e74eda 100644
--- a/main/devicestate.c
+++ b/main/devicestate.c
@@ -538,7 +538,6 @@ int ast_devstate_changed(enum ast_device_state state, const char *fmt, ...)
return ast_devstate_changed_literal(state, buf);
}
-/*! \brief Accept change notification, add it to change queue */
int ast_device_state_changed(const char *fmt, ...)
{
char buf[AST_MAX_EXTENSION];
diff --git a/main/enum.c b/main/enum.c
index a1722e7c5..339efc31c 100644
--- a/main/enum.c
+++ b/main/enum.c
@@ -915,14 +915,6 @@ int ast_get_enum(struct ast_channel *chan, const char *number, char *dst, int ds
return ret;
}
-/*!\brief Get TXT record from DNS.
- * Really has nothing to do with enum, but anyway...
- *
- * Actually, there is now an internet-draft which describes how callerID should
- * be stored in ENUM domains: draft-ietf-enum-cnam-04.txt
- *
- * The algorithm implemented here will thus be obsolete soon.
- */
int ast_get_txt(struct ast_channel *chan, const char *number, char *txt, int txtlen, char *suffix)
{
struct txt_context context;
diff --git a/main/tcptls.c b/main/tcptls.c
index ebb088a91..1d19bfed0 100644
--- a/main/tcptls.c
+++ b/main/tcptls.c
@@ -326,9 +326,6 @@ int ast_ssl_setup(struct ast_tls_config *cfg)
return __ssl_setup(cfg, 0);
}
-/*! \brief A generic client routine for a TCP client
- * and starts a thread for handling accept()
- */
struct ast_tcptls_session_instance *ast_tcptls_client_start(struct ast_tcptls_session_args *desc)
{
int flags;
@@ -408,11 +405,6 @@ error:
return NULL;
}
-/*! \brief
- * This is a generic (re)start routine for a TCP server,
- * which does the socket/bind/listen and starts a thread for handling
- * accept().
- */
void ast_tcptls_server_start(struct ast_tcptls_session_args *desc)
{
int flags;
@@ -476,7 +468,6 @@ error:
desc->accept_fd = -1;
}
-/*! \brief Shutdown a running server if there is one */
void ast_tcptls_server_stop(struct ast_tcptls_session_args *desc)
{
if (desc->master != AST_PTHREADT_NULL) {