From ba00665c368fd51c06e3b6b81a22e0fcfbf9cf7c Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Fri, 7 Jan 2022 04:44:58 +0100 Subject: [PATCH] sip: origin: Decouple TLS usage from target address Since we cannot do encrypted media streams yet, we should hardcode whether or not we want to use SRTP to FALSE, so that sips target URLs can be used in SIP calls at all. --- plugins/sip/calls-sip-origin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sip/calls-sip-origin.c b/plugins/sip/calls-sip-origin.c index 7f547fe..5890d94 100644 --- a/plugins/sip/calls-sip-origin.c +++ b/plugins/sip/calls-sip-origin.c @@ -252,7 +252,7 @@ add_call (CallsSipOrigin *self, local_sdp = calls_sip_media_manager_static_capabilities (self->media_manager, local_port, - check_sips (address)); + FALSE); g_assert (local_sdp);