sip: use ipv4 exclusively for now

IPv6 should work, but sofia's outbound engine keep printing
errors involving the outbound engine. Working theory:
Failing ICMPv6 (pings) can make sofia think we don't have connectivity.
Note that we also don't get any answers from the SIP servers we tried so far.
This commit is contained in:
Evangelos Ribeiro Tzaras
2021-03-08 11:26:55 +01:00
parent dcff7538f2
commit de44a17fe5
4 changed files with 28 additions and 7 deletions

View File

@@ -24,6 +24,14 @@
#include "calls-sip-util.h"
gboolean
check_ipv6 (const gchar *host)
{
/* TODO DNS SRV records to determine whether or not to use IPv6 */
return FALSE;
}
gboolean
check_sips (const gchar *addr)
{