REVERTING res_pjsip: make it unloadable

Due to the original patch causing memory corruptions the patch is
being removed until the problem can be resolved.


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@430734 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin Harwell
2015-01-17 00:31:40 +00:00
parent e257244bbb
commit 34c220203f
11 changed files with 32 additions and 151 deletions

View File

@@ -57,15 +57,7 @@ int ast_res_pjsip_init_contact_transports(void);
* \retval 0 Success
* \retval non-zero Failure
*/
int internal_sip_initialize_outbound_authentication(void);
/*!
* \brief Destroy outbound authentication support
*
* \retval 0 Success
* \retval non-zero Failure
*/
void internal_sip_destroy_outbound_authentication(void);
int ast_sip_initialize_outbound_authentication(void);
/*!
* \brief Initialize system configuration
@@ -120,24 +112,4 @@ char *ast_sip_global_default_outbound_endpoint(void);
int ast_sip_initialize_cli(void);
void ast_sip_destroy_cli(void);
/*!
* \internal \brief Used by res_pjsip.so to register a service without adding a self reference
*/
int internal_sip_register_service(pjsip_module *module);
/*!
* \internal \brief Used by res_pjsip.so to unregister a service without removing a self reference
*/
int internal_sip_unregister_service(pjsip_module *module);
/*!
* \internal \brief Used by res_pjsip.so to register an endpoint formatter without adding a self reference
*/
void internal_sip_register_endpoint_formatter(struct ast_sip_endpoint_formatter *obj);
/*!
* \internal \brief Used by res_pjsip.so to unregister a endpoint formatter without removing a self reference
*/
int internal_sip_unregister_endpoint_formatter(struct ast_sip_endpoint_formatter *obj);
#endif /* RES_PJSIP_PRIVATE_H_ */