Merge "res_pjsip_registrar_expire: Mark module deprecated." into 13

certified/13.21
Jenkins2 8 years ago committed by Gerrit Code Review
commit 58ba7490a9

@ -44,6 +44,12 @@ res_pjsip_endpoint_identifier_ip
you can now predict which endpoint is matched when a request comes in that you can now predict which endpoint is matched when a request comes in that
matches both. matches both.
res_pjsip_registrar_expire
------------------
* The res_pjsip_registrar_expire module is now deprecated and will be removed
from Asterisk 16. The existing functionality was moved into
res_pjsip_registrar.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
--- Functionality changes from Asterisk 13.18.0 to Asterisk 13.19.0 ---------- --- Functionality changes from Asterisk 13.18.0 to Asterisk 13.19.0 ----------
------------------------------------------------------------------------------ ------------------------------------------------------------------------------

@ -19,7 +19,7 @@
/*** MODULEINFO /*** MODULEINFO
<depend>pjproject</depend> <depend>pjproject</depend>
<depend>res_pjsip</depend> <depend>res_pjsip</depend>
<support_level>extended</support_level> <support_level>deprecated</support_level>
***/ ***/
/* /*
@ -41,7 +41,7 @@ static int load_module(void)
} }
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "OBSOLETE PJSIP Contact Auto-Expiration", AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "OBSOLETE PJSIP Contact Auto-Expiration",
.support_level = AST_MODULE_SUPPORT_EXTENDED, .support_level = AST_MODULE_SUPPORT_DEPRECATED,
.load = load_module, .load = load_module,
.unload = unload_module, .unload = unload_module,
.load_pri = AST_MODPRI_APP_DEPEND, .load_pri = AST_MODPRI_APP_DEPEND,

Loading…
Cancel
Save