Commit d7bc5d45 authored by Youness Alaoui's avatar Youness Alaoui

Correct support timing out for tcp sockets too

parent 59942464
...@@ -186,9 +186,10 @@ priv_send_turn_message (turn_priv *priv, TURNMessage *msg) ...@@ -186,9 +186,10 @@ priv_send_turn_message (turn_priv *priv, TURNMessage *msg)
stun_timer_start_reliable (&msg->timer); stun_timer_start_reliable (&msg->timer);
} else { } else {
stun_timer_start (&msg->timer); stun_timer_start (&msg->timer);
priv->current_binding_msg = msg;
priv_schedule_tick (priv);
} }
priv->current_binding_msg = msg;
priv_schedule_tick (priv);
} }
static gboolean static gboolean
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment