mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-06-05 23:18:55 +00:00
threadshare: Rename udpsocket file to socket file
This commit is contained in:
parent
1ac85c91e5
commit
df86b67117
3 changed files with 3 additions and 3 deletions
|
@ -29,10 +29,10 @@ extern crate gstreamer as gst;
|
||||||
|
|
||||||
extern crate futures;
|
extern crate futures;
|
||||||
extern crate tokio;
|
extern crate tokio;
|
||||||
|
extern crate tokio_current_thread;
|
||||||
extern crate tokio_executor;
|
extern crate tokio_executor;
|
||||||
extern crate tokio_reactor;
|
extern crate tokio_reactor;
|
||||||
extern crate tokio_threadpool;
|
extern crate tokio_threadpool;
|
||||||
extern crate tokio_current_thread;
|
|
||||||
extern crate tokio_timer;
|
extern crate tokio_timer;
|
||||||
|
|
||||||
extern crate either;
|
extern crate either;
|
||||||
|
@ -46,7 +46,7 @@ extern crate net2;
|
||||||
|
|
||||||
mod iocontext;
|
mod iocontext;
|
||||||
|
|
||||||
mod udpsocket;
|
mod socket;
|
||||||
mod udpsrc;
|
mod udpsrc;
|
||||||
|
|
||||||
mod appsrc;
|
mod appsrc;
|
||||||
|
|
|
@ -39,7 +39,7 @@ use rand;
|
||||||
use net2;
|
use net2;
|
||||||
|
|
||||||
use iocontext::*;
|
use iocontext::*;
|
||||||
use udpsocket::*;
|
use socket::*;
|
||||||
|
|
||||||
const DEFAULT_ADDRESS: Option<&'static str> = Some("127.0.0.1");
|
const DEFAULT_ADDRESS: Option<&'static str> = Some("127.0.0.1");
|
||||||
const DEFAULT_PORT: u32 = 5000;
|
const DEFAULT_PORT: u32 = 5000;
|
||||||
|
|
Loading…
Reference in a new issue