From 14102d44449d2eb4148588ce54fa897fa13b87ad Mon Sep 17 00:00:00 2001 From: Fabrice Bellet Date: Sun, 2 Jul 2017 16:02:09 +0200 Subject: conncheck: change state before updating nominated pairs When a pair is nominated while in state failed, we first move back to state connecting, then we update the selected pair, and finally we move to state connected. --- agent/conncheck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/conncheck.c b/agent/conncheck.c index 0e3ce88..e584c0e 100644 --- a/agent/conncheck.c +++ b/agent/conncheck.c @@ -2114,11 +2114,11 @@ static void priv_mark_pair_nominated (NiceAgent *agent, NiceStream *stream, Nice } if (pair->valid) { - priv_update_selected_pair (agent, component, pair); /* Do not step down to CONNECTED if we're already at state READY*/ if (component->state == NICE_COMPONENT_STATE_FAILED) agent_signal_component_state_change (agent, stream->id, component->id, NICE_COMPONENT_STATE_CONNECTING); + priv_update_selected_pair (agent, component, pair); if (component->state == NICE_COMPONENT_STATE_CONNECTING) /* step: notify the client of a new component state (must be done * before the possible check list state update step */ -- cgit v1.2.1