diff options
| -rw-r--r-- | Cargo.toml | 6 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | src/upnp.rs | 2 |
3 files changed, 11 insertions, 3 deletions
@@ -1,7 +1,11 @@ [package] -name = "rustcast" +name = "slingr" version = "0.1.0" authors = ["Yuval Adam <_@yuv.al>"] +description = "A simple CLI for UPnP media file streaming" +homepage = "https://github.com/yuvadm/slingr" +repository = "https://github.com/yuvadm/slingr" +license = "GPLv3" [dependencies] colored = "1.6" @@ -1,6 +1,10 @@ # Slingr -A simple command line tool for streaming media files over a local network to a a UPnP media renderer (e.g. HDMI/DLNA/UPnP/Miracast Dongles). +[](https://travis-ci.org/yuvadm/slingr) + +A simple CLI for streaming media files over a local network to UPnP media renderers. + +Designed to work with cheap HDMI/DLNA/UPnP/Miracast Dongles. The `r` stands for Rust. diff --git a/src/upnp.rs b/src/upnp.rs index 3914e26..f2e4a5a 100644 --- a/src/upnp.rs +++ b/src/upnp.rs @@ -5,7 +5,7 @@ Host: 239.255.255.250:1900\r\n Man: \"ssdp:discover\"\r\n ST: ssdp:all\r\n MX: 3\r\n -User-Agent: rustcast/0.1.0\r\n\r\n"; +User-Agent: slingr/0.1.0\r\n\r\n"; pub fn discover() { println!("Discovering..."); |
