00001 /* 00002 * Prototypes for public functions only of internal interest, 00003 * normally not used by modules. 00004 * What goes here are typically *_init() routines. 00005 */ 00006 00007 /*! \file 00008 * 00009 * \brief 00010 * Prototypes for public functions only of internal interest, 00011 * 00012 */ 00013 00014 00015 #ifndef _ASTERISK__PRIVATE_H 00016 #define _ASTERISK__PRIVATE_H 00017 00018 int load_modules(unsigned int); /*!< Provided by loader.c */ 00019 int load_pbx(void); /*!< Provided by pbx.c */ 00020 int init_logger(void); /*!< Provided by logger.c */ 00021 void close_logger(void); /*!< Provided by logger.c */ 00022 int init_framer(void); /*!< Provided by frame.c */ 00023 int ast_term_init(void); /*!< Provided by term.c */ 00024 int astdb_init(void); /*!< Provided by db.c */ 00025 void ast_channels_init(void); /*!< Provided by channel.c */ 00026 void ast_builtins_init(void); /*!< Provided by cli.c */ 00027 int dnsmgr_init(void); /*!< Provided by dnsmgr.c */ 00028 void dnsmgr_start_refresh(void); /*!< Provided by dnsmgr.c */ 00029 int dnsmgr_reload(void); /*!< Provided by dnsmgr.c */ 00030 void threadstorage_init(void); /*!< Provided by threadstorage.c */ 00031 void ast_event_init(void); /*!< Provided by event.c */ 00032 int ast_device_state_engine_init(void); /*!< Provided by devicestate.c */ 00033 int astobj2_init(void); /*!< Provided by astobj2.c */ 00034 int ast_file_init(void); /*!< Provided by file.c */ 00035 int ast_features_init(void); /*!< Provided by features.c */ 00036 void ast_autoservice_init(void); /*!< Provided by autoservice.c */ 00037 00038 /*! 00039 * \brief Reload asterisk modules. 00040 * \param name the name of the module to reload 00041 * 00042 * This function reloads the specified module, or if no modules are specified, 00043 * it will reload all loaded modules. 00044 * 00045 * \note Modules are reloaded using their reload() functions, not unloading 00046 * them and loading them again. 00047 * 00048 * \return 0 if the specified module was not found. 00049 * \retval 1 if the module was found but cannot be reloaded. 00050 * \retval -1 if a reload operation is already in progress. 00051 * \retval 2 if the specfied module was found and reloaded. 00052 */ 00053 int ast_module_reload(const char *name); 00054 00055 /*! 00056 * \brief Process reload requests received during startup. 00057 * 00058 * This function requests that the loader execute the pending reload requests 00059 * that were queued during server startup. 00060 * 00061 * \note This function will do nothing if the server has not completely started 00062 * up. Once called, the reload queue is emptied, and further invocations 00063 * will have no affect. 00064 */ 00065 void ast_process_pending_reloads(void); 00066 00067 #endif /* _ASTERISK__PRIVATE_H */