summaryrefslogtreecommitdiff
path: root/res/res_pjsip_registrar.c
diff options
context:
space:
mode:
authorAlexei Gradinari <alex2grad@gmail.com>2016-05-06 12:54:17 -0400
committerAlexei Gradinari <alex2grad@gmail.com>2016-05-06 12:56:07 -0400
commit322c3b4262a8f5d2184465e0f86445864e1a533d (patch)
treee49aefc82a894936975d2366f0760432bdf5f903 /res/res_pjsip_registrar.c
parent52fbb6389a9df7ba1a9ce6cd6e0b06a0531897b9 (diff)
res_pjsip: module load priority
The res_pjsip_authenticator_digest, res_pjsip_endpoint_identifier_* and res_pjsip_registrar modules should load ASAP to avoid "No matching endpoint found" for legitimate endpoint. ASTERISK-25994 Change-Id: Iac95d95ad031e0be104189d29e923a2ad7c24a1b
Diffstat (limited to 'res/res_pjsip_registrar.c')
-rw-r--r--res/res_pjsip_registrar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_pjsip_registrar.c b/res/res_pjsip_registrar.c
index 65fd56c02..cbc33ab80 100644
--- a/res/res_pjsip_registrar.c
+++ b/res/res_pjsip_registrar.c
@@ -957,5 +957,5 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP Registrar Suppo
.support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_APP_DEPEND,
+ .load_pri = AST_MODPRI_CHANNEL_DEPEND - 3,
);