summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-03-24 12:57:17 +0200
committerSebastian Dröge <sebastian@centricular.com>2020-03-24 12:57:17 +0200
commit65db695212f9cd09fafb37e2ac19b5a42137faa7 (patch)
tree6c106821836c54db9a2414198dc644bbb3fb0dc8
parent5bf67feae8f4755862e571674ce0c8cf78d9b45b (diff)
Set TURN server in Rust sendrecv example too
Previously it was only in the multiparty example.
-rw-r--r--webrtc/sendrecv/gst-rust/src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/webrtc/sendrecv/gst-rust/src/main.rs b/webrtc/sendrecv/gst-rust/src/main.rs
index 48f9c38..92e71b2 100644
--- a/webrtc/sendrecv/gst-rust/src/main.rs
+++ b/webrtc/sendrecv/gst-rust/src/main.rs
@@ -24,6 +24,7 @@ use serde_derive::{Deserialize, Serialize};
use anyhow::{anyhow, bail, Context};
const STUN_SERVER: &str = "stun://stun.l.google.com:19302";
+const TURN_SERVER: &str = "turn://foo:bar@webrtc.nirbheek.in:3478";
// upgrade weak reference or return
#[macro_export]
@@ -131,6 +132,7 @@ impl App {
// Set some properties on webrtcbin
webrtcbin.set_property_from_str("stun-server", STUN_SERVER);
+ webrtcbin.set_property_from_str("turn-server", TURN_SERVER);
webrtcbin.set_property_from_str("bundle-policy", "max-bundle");
// Create a stream for handling the GStreamer message asynchronously