]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_pjsip_registrar_expire: Mark module deprecated.
authorCorey Farrell <git@cfware.com>
Wed, 31 Jan 2018 21:15:46 +0000 (16:15 -0500)
committerCorey Farrell <git@cfware.com>
Wed, 31 Jan 2018 21:15:46 +0000 (16:15 -0500)
The functionality of this module was already moved to
res_pjsip_registrar, mark it deprecated and add message to CHANGES.

Change-Id: I90c7d52c7e15e85fde3389d5eaccb05b97848813

CHANGES
res/res_pjsip_registrar_expire.c

diff --git a/CHANGES b/CHANGES
index 6e58928680e44bc1c0c44c1bccbf7bb96f504a64..fc52916311b4b7a14752647fffc107a0df2ff6f6 100644 (file)
--- 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 ----------
 ------------------------------------------------------------------------------
index ef5cfed66c847372a98f6c6175bcefe331e17d4a..e60237a625d51d09f36cfc67ee7b18540855ae53 100644 (file)
@@ -19,7 +19,7 @@
 /*** MODULEINFO
        <depend>pjproject</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",
-       .support_level = AST_MODULE_SUPPORT_EXTENDED,
+       .support_level = AST_MODULE_SUPPORT_DEPRECATED,
        .load = load_module,
        .unload = unload_module,
        .load_pri = AST_MODPRI_APP_DEPEND,