From: Corey Farrell Date: Wed, 31 Jan 2018 21:15:46 +0000 (-0500) Subject: res_pjsip_registrar_expire: Mark module deprecated. X-Git-Tag: 13.20.0-rc1~51^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=698b28e9c76c9ca897444c5f0e024f354dd7ef91;p=thirdparty%2Fasterisk.git res_pjsip_registrar_expire: Mark module deprecated. The functionality of this module was already moved to res_pjsip_registrar, mark it deprecated and add message to CHANGES. Change-Id: I90c7d52c7e15e85fde3389d5eaccb05b97848813 --- diff --git a/CHANGES b/CHANGES index 6e58928680..fc52916311 100644 --- a/CHANGES +++ b/CHANGES @@ -44,6 +44,12 @@ res_pjsip_endpoint_identifier_ip you can now predict which endpoint is matched when a request comes in that 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 ---------- ------------------------------------------------------------------------------ diff --git a/res/res_pjsip_registrar_expire.c b/res/res_pjsip_registrar_expire.c index ef5cfed66c..e60237a625 100644 --- a/res/res_pjsip_registrar_expire.c +++ b/res/res_pjsip_registrar_expire.c @@ -19,7 +19,7 @@ /*** MODULEINFO pjproject res_pjsip - extended + deprecated ***/ /* @@ -41,7 +41,7 @@ static int load_module(void) } 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, .unload = unload_module, .load_pri = AST_MODPRI_APP_DEPEND,