summaryrefslogtreecommitdiff
path: root/res/res_sip/include/res_sip_private.h
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2013-07-30 18:14:50 +0000
committerMark Michelson <mmichelson@digium.com>2013-07-30 18:14:50 +0000
commit735b30ad71110c2a51404cb8686bbe3cf14b630c (patch)
tree76b1f10135c1b7f210e576be1359539de7e3476c /res/res_sip/include/res_sip_private.h
parent895c8e0d2c97cd04299f3f179e99d8a3873c06c6 (diff)
The large GULP->PJSIP renaming effort.
The general gist is to have a clear boundary between old SIP stuff and new SIP stuff by having the word "SIP" for old stuff and "PJSIP" for new stuff. Here's a brief rundown of the changes: * The word "Gulp" in dialstrings, functions, and CLI commands is now "PJSIP" * chan_gulp.c is now chan_pjsip.c * Function names in chan_gulp.c that were "gulp_*" are now "chan_pjsip_*" * All files that were "res_sip*" are now "res_pjsip*" * The "res_sip" directory is now "res_pjsip" * Files in the "res_pjsip" directory that began with "sip_*" are now "pjsip_*" * The configuration file is now "pjsip.conf" instead of "res_sip.conf" * The module info for all PJSIP-related files now uses "PJSIP" instead of "SIP" * CLI and AMI commands created by Asterisk's PJSIP modules now have "pjsip" as the starting word instead of "sip" git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@395764 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_sip/include/res_sip_private.h')
-rw-r--r--res/res_sip/include/res_sip_private.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/res/res_sip/include/res_sip_private.h b/res/res_sip/include/res_sip_private.h
deleted file mode 100644
index 96a954bab..000000000
--- a/res/res_sip/include/res_sip_private.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * res_sip.h
- *
- * Created on: Jan 25, 2013
- * Author: mjordan
- */
-
-#ifndef RES_SIP_PRIVATE_H_
-#define RES_SIP_PRIVATE_H_
-
-struct ao2_container;
-
-/*!
- * \brief Initialize the configuration for res_sip
- */
-int ast_res_sip_initialize_configuration(void);
-
-/*!
- * \brief Annihilate the configuration objects
- */
-void ast_res_sip_destroy_configuration(void);
-
-/*!
- * \brief Reload the configuration
- */
-int ast_res_sip_reload_configuration(void);
-
-/*!
- * \brief Initialize OPTIONS request handling.
- *
- * XXX This currently includes qualifying peers. It shouldn't.
- * That should go into a registrar. When that occurs, we won't
- * need the reload stuff.
- *
- * \param reload Reload options handling
- *
- * \retval 0 on success
- * \retval other on failure
- */
-int ast_res_sip_init_options_handling(int reload);
-
-/*!
- * \brief Initialize transport storage for contacts.
- *
- * \retval 0 on success
- * \retval other on failure
- */
-int ast_res_sip_init_contact_transports(void);
-
-/*!
- * \brief Initialize outbound authentication support
- *
- * \retval 0 Success
- * \retval non-zero Failure
- */
-int ast_sip_initialize_outbound_authentication(void);
-
-/*!
- * \brief Initialize system configuration
- *
- * \retval 0 Success
- * \retval non-zero Failure
- */
-int ast_sip_initialize_system(void);
-
-/*!
- * \brief Initialize global configuration
- *
- * \retval 0 Success
- * \retval non-zero Failure
- */
-int ast_sip_initialize_global(void);
-
-#endif /* RES_SIP_PRIVATE_H_ */