rustdesk/src/main.rs

87 lines
2.5 KiB
Rust
Raw Normal View History

2021-03-29 15:59:14 +08:00
// Specify the Windows subsystem to eliminate console window.
// Requires Rust 1.18.
//#![windows_subsystem = "windows"]
2021-03-29 15:59:14 +08:00
2022-05-12 17:35:25 +08:00
use librustdesk::*;
2021-03-29 15:59:14 +08:00
#[cfg(any(target_os = "android", target_os = "ios"))]
fn main() {
if !common::global_init() {
return;
}
2021-03-29 15:59:14 +08:00
common::test_rendezvous_server();
common::test_nat_type();
#[cfg(target_os = "android")]
crate::common::check_software_update();
common::global_clean();
2021-03-29 15:59:14 +08:00
}
#[cfg(not(any(target_os = "android", target_os = "ios", feature = "cli")))]
fn main() {
if !common::global_init() {
return;
}
if let Some(args) = crate::core_main::core_main().as_mut() {
ui::start(args);
2022-05-04 20:39:07 +08:00
}
common::global_clean();
2021-03-29 15:59:14 +08:00
}
#[cfg(feature = "cli")]
fn main() {
if !common::global_init() {
return;
}
2021-03-29 15:59:14 +08:00
use clap::App;
use hbb_common::log;
2021-03-29 15:59:14 +08:00
let args = format!(
"-p, --port-forward=[PORT-FORWARD-OPTIONS] 'Format: remote-id:local-port:remote-port[:remote-host]'
2022-05-12 17:35:25 +08:00
-k, --key=[KEY] ''
2021-03-29 15:59:14 +08:00
-s, --server... 'Start server'",
);
let matches = App::new("rustdesk")
.version(crate::VERSION)
.author("CarrieZ Studio<info@rustdesk.com>")
.about("RustDesk command line tool")
.args_from_usage(&args)
.get_matches();
use hbb_common::{config::LocalConfig, env_logger::*};
2021-03-29 15:59:14 +08:00
init_from_env(Env::default().filter_or(DEFAULT_FILTER_ENV, "info"));
if let Some(p) = matches.value_of("port-forward") {
let options: Vec<String> = p.split(":").map(|x| x.to_owned()).collect();
if options.len() < 3 {
log::error!("Wrong port-forward options");
return;
}
let mut port = 0;
if let Ok(v) = options[1].parse::<i32>() {
port = v;
} else {
log::error!("Wrong local-port");
return;
}
let mut remote_port = 0;
if let Ok(v) = options[2].parse::<i32>() {
remote_port = v;
} else {
log::error!("Wrong remote-port");
return;
}
let mut remote_host = "localhost".to_owned();
if options.len() > 3 {
remote_host = options[3].clone();
}
2022-05-12 17:35:25 +08:00
let key = matches.value_of("key").unwrap_or("").to_owned();
let token = LocalConfig::get_option("access_token");
cli::start_one_port_forward(
options[0].clone(),
port,
remote_host,
remote_port,
key,
token,
);
2021-03-29 15:59:14 +08:00
}
common::global_clean();
}