summaryrefslogtreecommitdiff
path: root/res/res_pjsip_authenticator_digest.c
diff options
context:
space:
mode:
authorAlexei Gradinari <alex2grad@gmail.com>2016-05-04 16:16:24 -0400
committerAlexei Gradinari <alex2grad@gmail.com>2016-05-06 09:27:39 -0400
commit72eb7c8301b046fb10dfb9afd9f145f72889b921 (patch)
tree0adbe6acf49ab7d835f2e5119e6678c9dca3fe13 /res/res_pjsip_authenticator_digest.c
parentdd00c71aae12ddfb8af9ca5fab41b1badd50ca5a (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_authenticator_digest.c')
-rw-r--r--res/res_pjsip_authenticator_digest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_pjsip_authenticator_digest.c b/res/res_pjsip_authenticator_digest.c
index ff46fd884..d56bdd650 100644
--- a/res/res_pjsip_authenticator_digest.c
+++ b/res/res_pjsip_authenticator_digest.c
@@ -509,5 +509,5 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP authentication
.load = load_module,
.unload = unload_module,
.reload = reload_module,
- .load_pri = AST_MODPRI_CHANNEL_DEPEND,
+ .load_pri = AST_MODPRI_CHANNEL_DEPEND - 5,
);