From 2abc6155eb899273617eaf9f0fc662dc10a5edce Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Wed, 7 Feb 2018 11:56:49 +0100 Subject: [PATCH] do not use gruu in ipv6 tester to see if there's ':' in contact ip --- tester/flexisip_tester.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tester/flexisip_tester.c b/tester/flexisip_tester.c index 0e1385544..46c6083e8 100644 --- a/tester/flexisip_tester.c +++ b/tester/flexisip_tester.c @@ -785,10 +785,12 @@ static void _call_with_ipv6(bool_t caller_with_ipv6, bool_t callee_with_ipv6) { } marie = linphone_core_manager_new2( "marie_rc", FALSE); + linphone_core_remove_supported_tag(marie->lc,"gruu"); // With gruu, we have no access to the "public IP from contact linphone_core_enable_ipv6(marie->lc, caller_with_ipv6); linphone_core_manager_start(marie, TRUE); pauline = linphone_core_manager_new2( transport_supported(LinphoneTransportTls) ? "pauline_rc" : "pauline_tcp_rc", FALSE); + linphone_core_remove_supported_tag(pauline->lc,"gruu"); // With gruu, we have no access to the "public IP from contact linphone_core_enable_ipv6(pauline->lc, callee_with_ipv6); linphone_core_manager_start(pauline, TRUE);