mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
Fix stun server address
The stun server address has a space as suffix which is not allowed in the rust bindings.
This commit is contained in:
parent
122c4106a4
commit
dc1163ab95
1 changed files with 1 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue