From 94ec7eea0c5556488e6549160b54f0f9b43b46ed Mon Sep 17 00:00:00 2001 From: Antoine Noreau <antoine.noreau@savoirfairelinux.com> Date: Fri, 28 Oct 2022 15:31:23 -0400 Subject: [PATCH] sip: fixed non-TLS incoming & outgoing SMS messages Authentication realm kept as wildcard * to accept all challenges Gitlab: #680 Change-Id: Ie75243466f683d939e27a94f5a9a16652e4a38de --- src/sip/sipaccount.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/sip/sipaccount.cpp b/src/sip/sipaccount.cpp index b79e3af1dc..5277b33fed 100644 --- a/src/sip/sipaccount.cpp +++ b/src/sip/sipaccount.cpp @@ -2219,8 +2219,6 @@ SIPAccount::sendMessage(const std::string& to, t->id = id; /* Initialize Auth header. */ - auto cred = getCredInfo(); - const_cast<pjsip_cred_info*>(cred)->realm = CONST_PJ_STR(hostname_); status = pjsip_auth_clt_init(t->auth_sess.get(), link_.getEndpoint(), tdata->pool, 0); if (status != PJ_SUCCESS) { @@ -2229,7 +2227,7 @@ SIPAccount::sendMessage(const std::string& to, return; } - status = pjsip_auth_clt_set_credentials(t->auth_sess.get(), getCredentialCount(), cred); + status = pjsip_auth_clt_set_credentials(t->auth_sess.get(), getCredentialCount(), getCredInfo()); if (status != PJ_SUCCESS) { JAMI_ERR("Unable to set auth session data: %s", sip_utils::sip_strerror(status).c_str()); -- GitLab