summaryrefslogtreecommitdiff
path: root/include/asterisk/_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/_private.h')
-rw-r--r--include/asterisk/_private.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/asterisk/_private.h b/include/asterisk/_private.h
index 01a8352fc..5c80bf0e9 100644
--- a/include/asterisk/_private.h
+++ b/include/asterisk/_private.h
@@ -51,20 +51,6 @@ void ast_msg_shutdown(void); /*!< Provided by message.c */
int aco_init(void); /*!< Provided by config_options.c */
/*!
- * \since 12
- * \brief Possible return types for \ref ast_module_reload
- */
-enum ast_module_reload_result {
- AST_MODULE_RELOAD_SUCCESS = 0, /*!< The module was reloaded succesfully */
- AST_MODULE_RELOAD_QUEUED, /*!< The module reload request was queued */
- AST_MODULE_RELOAD_NOT_FOUND, /*!< The requested module was not found */
- AST_MODULE_RELOAD_ERROR, /*!< An error occurred while reloading the module */
- AST_MODULE_RELOAD_IN_PROGRESS, /*!< A module reload request is already in progress */
- AST_MODULE_RELOAD_UNINITIALIZED, /*!< The module has not been initialized */
- AST_MODULE_RELOAD_NOT_IMPLEMENTED, /*!< This module doesn't support reloading */
-};
-
-/*!
* \brief Initialize the bridging system.
* \since 12.0.0
*
@@ -83,20 +69,6 @@ int ast_bridging_init(void);
int ast_local_init(void);
/*!
- * \brief Reload asterisk modules.
- * \param name the name of the module to reload
- *
- * This function reloads the specified module, or if no modules are specified,
- * it will reload all loaded modules.
- *
- * \note Modules are reloaded using their reload() functions, not unloading
- * them and loading them again.
- *
- * \retval The \ref ast_module_reload_result status of the module load request
- */
-enum ast_module_reload_result ast_module_reload(const char *name);
-
-/*!
* \brief Process reload requests received during startup.
*
* This function requests that the loader execute the pending reload requests