Thu Apr 28 2011 16:56:39

Asterisk developer's documentation


_private.h

Go to the documentation of this file.
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 ast_cli_perms_init(int reload); /*!< Provided by cli.c */
00028 int dnsmgr_init(void);        /*!< Provided by dnsmgr.c */ 
00029 void dnsmgr_start_refresh(void); /*!< Provided by dnsmgr.c */
00030 int dnsmgr_reload(void);      /*!< Provided by dnsmgr.c */
00031 void threadstorage_init(void);      /*!< Provided by threadstorage.c */
00032 int ast_event_init(void);     /*!< Provided by event.c */
00033 int ast_device_state_engine_init(void);   /*!< Provided by devicestate.c */
00034 int astobj2_init(void);       /*!< Provided by astobj2.c */
00035 int ast_file_init(void);      /*!< Provided by file.c */
00036 int ast_features_init(void);            /*!< Provided by features.c */
00037 void ast_autoservice_init(void); /*!< Provided by autoservice.c */
00038 int ast_http_init(void);      /*!< Provided by http.c */
00039 int ast_http_reload(void);    /*!< Provided by http.c */
00040 int ast_tps_init(void);       /*!< Provided by taskprocessor.c */
00041 int ast_timing_init(void);    /*!< Provided by timing.c */
00042 int ast_indications_init(void); /*!< Provided by indications.c */
00043 int ast_indications_reload(void);/*!< Provided by indications.c */
00044 int ast_ssl_init(void);                 /*!< Porvided by ssl.c */
00045 int ast_test_init(void);                /*!< Provided by test.c */
00046 
00047 /*!
00048  * \brief Reload asterisk modules.
00049  * \param name the name of the module to reload
00050  *
00051  * This function reloads the specified module, or if no modules are specified,
00052  * it will reload all loaded modules.
00053  *
00054  * \note Modules are reloaded using their reload() functions, not unloading
00055  * them and loading them again.
00056  * 
00057  * \return 0 if the specified module was not found.
00058  * \retval 1 if the module was found but cannot be reloaded.
00059  * \retval -1 if a reload operation is already in progress.
00060  * \retval 2 if the specfied module was found and reloaded.
00061  */
00062 int ast_module_reload(const char *name);
00063 
00064 /*!
00065  * \brief Process reload requests received during startup.
00066  *
00067  * This function requests that the loader execute the pending reload requests
00068  * that were queued during server startup.
00069  *
00070  * \note This function will do nothing if the server has not completely started
00071  *       up.  Once called, the reload queue is emptied, and further invocations
00072  *       will have no affect.
00073  */
00074 void ast_process_pending_reloads(void);
00075 
00076 /*! \brief Load XML documentation. Provided by xmldoc.c 
00077  *  \retval 1 on error.
00078  *  \retval 0 on success. 
00079  */
00080 int ast_xmldoc_load_documentation(void);
00081 
00082 /*!
00083  * \brief Reload genericplc configuration value from codecs.conf
00084  *
00085  * Implementation is in main/channel.c
00086  */
00087 int ast_plc_reload(void);
00088 
00089 #endif /* _ASTERISK__PRIVATE_H */