1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-19 05:22:38 +01:00
actix-net/actix-connect/src/uri.rs

38 lines
806 B
Rust
Raw Permalink Normal View History

2019-03-14 19:15:32 +01:00
use http::Uri;
use crate::Address;
impl Address for Uri {
fn host(&self) -> &str {
self.host().unwrap_or("")
}
fn port(&self) -> Option<u16> {
if let Some(port) = self.port_u16() {
Some(port)
} else {
port(self.scheme_str())
}
}
}
// TODO: load data from file
fn port(scheme: Option<&str>) -> Option<u16> {
if let Some(scheme) = scheme {
match scheme {
"http" => Some(80),
"https" => Some(443),
"ws" => Some(80),
"wss" => Some(443),
"amqp" => Some(5672),
2019-03-14 20:56:59 +01:00
"amqps" => Some(5671),
2019-03-15 19:37:51 +01:00
"sb" => Some(5671),
2019-03-14 19:15:32 +01:00
"mqtt" => Some(1883),
"mqtts" => Some(8883),
_ => None,
}
} else {
None
}
}