summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
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 ca739cdfe..8410b9592 100644
--- a/main/devicestate.c
+++ b/main/devicestate.c
@@ -514,7 +514,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 23657110b..959f9aab5 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 973a94b71..edf2fe97e 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) {