1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-28 14:49:30 +00:00

test: sip: Don't use DNS lookups

Otherwise build servers might not be happy.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-04-23 15:09:46 +02:00
parent 0389137df3
commit 1593dd299b

View file

@ -263,13 +263,13 @@ test_sip_call_direct_calls (SipFixture *fixture,
g_object_get (fixture->origin_alice,
"local-port", &local_port_alice,
NULL);
address_alice = g_strdup_printf ("sip:alice@localhost:%d",
address_alice = g_strdup_printf ("sip:alice@127.0.0.1:%d",
local_port_alice);
g_object_get (fixture->origin_bob,
"local-port", &local_port_bob,
NULL);
address_bob = g_strdup_printf ("sip:bob@localhost:%d",
address_bob = g_strdup_printf ("sip:bob@127.0.0.1:%d",
local_port_bob);
/* Case 1: Bob calls Alice, Alice rejects call */