From 358d4a2d25a585e79f17fe4aaf2e30dfd101bee4 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Sun, 10 Feb 2019 18:20:49 +0100 Subject: [PATCH] Fix ICE agent not being in controlling mode --- src/connection.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/connection.rs b/src/connection.rs index 882788a..c245509 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -195,6 +195,7 @@ impl Connection { // Setup ICE agent let mut agent = ice::Agent::new_rfc5245(); agent.set_software("mumble-web-proxy"); + agent.set_controlling_mode(true); // Setup ICE stream let mut stream = match {