Skip to content

Commit

Permalink
Fix stun server address
Browse files Browse the repository at this point in the history
The stun server address has a space as suffix which is not allowed in the rust bindings.
  • Loading branch information
meldron authored and ystreet committed Jul 26, 2018
1 parent 2a78abf commit 871c238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sendrecv/gst-rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use std::sync::{mpsc, Arc, Mutex};
use std::thread;
use websocket::message::OwnedMessage;

const STUN_SERVER: &str = "stun://stun.l.google.com:19302 ";
const STUN_SERVER: &str = "stun://stun.l.google.com:19302";
lazy_static! {
static ref RTP_CAPS_OPUS: gst::Caps = {
gst::Caps::new_simple(
Expand Down

0 comments on commit 871c238

Please sign in to comment.