//! An asynchronous abstraction for discovering devices and services on a network.
//!
//! SSDP stands for Simple Service Discovery Protocol and it is a protocol that uses
//! HTTPMU to distribute messages across a local network for devices and services to
//! discover each other. SSDP can most commonly be found in devices that implement
//! `UPnP` as it is used as the discovery mechanism for that standard.
extern crate hyper;
extern crate log;
extern crate time;
extern crate get_if_addrs;
extern crate net2;
extern crate error_chain;
pub use ;
pub use FieldMap;
pub use ;
pub use IpVersionMode;