2020-03-06 17:18:22 +08:00
|
|
|
// https://tools.ietf.org/rfc/rfc5128.txt
|
|
|
|
// https://blog.csdn.net/bytxl/article/details/44344855
|
|
|
|
|
2020-09-18 13:04:39 +08:00
|
|
|
use clap::App;
|
2020-09-17 10:02:20 +08:00
|
|
|
use hbb_common::{env_logger::*, log, tokio, ResultType};
|
2020-03-06 17:18:22 +08:00
|
|
|
use hbbs::*;
|
2020-09-18 17:07:17 +08:00
|
|
|
use ini::Ini;
|
2020-09-18 13:04:39 +08:00
|
|
|
const DEFAULT_PORT: &'static str = "21116";
|
2020-03-06 17:18:22 +08:00
|
|
|
|
|
|
|
#[tokio::main]
|
2020-03-09 20:52:54 +08:00
|
|
|
async fn main() -> ResultType<()> {
|
2020-09-17 10:02:20 +08:00
|
|
|
init_from_env(Env::default().filter_or(DEFAULT_FILTER_ENV, "info"));
|
2020-09-18 13:04:39 +08:00
|
|
|
let args = format!(
|
2020-09-18 17:07:17 +08:00
|
|
|
"-c --config=[FILE] +takes_value 'Sets a custom config file'
|
|
|
|
-p, --port=[NUMBER(default={})] 'Sets the listening port'
|
|
|
|
-s, --serial=[NUMBER(default={0})] 'Sets configure update serial number'
|
|
|
|
-R, --rendezvous-servers=[HOSTS] 'Sets rendezvous servers, seperated by colon'
|
|
|
|
-r, --relay-server=[HOST] 'Sets the default relay server'",
|
2020-09-18 13:04:39 +08:00
|
|
|
DEFAULT_PORT
|
|
|
|
);
|
|
|
|
let matches = App::new("hbbs")
|
|
|
|
.version("1.0")
|
|
|
|
.author("Zhou Huabing <info@rustdesk.com>")
|
|
|
|
.about("RustDesk Rendezvous Server")
|
|
|
|
.args_from_usage(&args)
|
|
|
|
.get_matches();
|
2020-09-18 17:07:17 +08:00
|
|
|
let mut section = None;
|
|
|
|
let conf; // for holding section
|
|
|
|
if let Some(config) = matches.value_of("config") {
|
|
|
|
if let Ok(v) = Ini::load_from_file(config) {
|
|
|
|
conf = v;
|
|
|
|
section = conf.section(None::<String>);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let get_arg = |name: &str, default: &str| -> String {
|
|
|
|
if let Some(v) = matches.value_of(name) {
|
|
|
|
return v.to_owned();
|
|
|
|
} else if let Some(section) = section {
|
|
|
|
if let Some(v) = section.get(name) {
|
|
|
|
return v.to_owned();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return default.to_owned();
|
|
|
|
};
|
|
|
|
let port = get_arg("port", DEFAULT_PORT);
|
|
|
|
let mut relay_server = get_arg("relay-server", "");
|
|
|
|
if !relay_server.contains(":") {
|
|
|
|
relay_server = format!("{}:21117", relay_server);
|
|
|
|
}
|
|
|
|
if !relay_server.parse::<std::net::SocketAddr>().is_ok() {
|
|
|
|
relay_server = "".to_owned();
|
|
|
|
}
|
|
|
|
let serial: i32 = get_arg("serial", "").parse().unwrap_or(0);
|
|
|
|
let rendezvous_servers: Vec<String> = get_arg("rendezvous-servers", "")
|
|
|
|
.split(",")
|
|
|
|
.map(|x| {
|
|
|
|
if !x.contains(":") {
|
|
|
|
format!("{}:21116", x)
|
|
|
|
} else {
|
|
|
|
x.to_owned()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.filter(|x| x.parse::<std::net::SocketAddr>().is_ok())
|
|
|
|
.collect();
|
|
|
|
let addr = format!("0.0.0.0:{}", port);
|
2020-09-17 00:04:39 +08:00
|
|
|
log::info!("Listening on {}", addr);
|
2020-09-18 17:07:17 +08:00
|
|
|
log::info!("relay-server={}", relay_server);
|
|
|
|
log::info!("serial={}", serial);
|
|
|
|
log::info!("rendzvous-servers={:?}", rendezvous_servers);
|
|
|
|
RendezvousServer::start(&addr, relay_server, serial, rendezvous_servers).await?;
|
2020-03-06 17:18:22 +08:00
|
|
|
Ok(())
|
2020-03-09 19:35:57 +08:00
|
|
|
}
|