2021-03-29 15:59:14 +08:00
|
|
|
// Specify the Windows subsystem to eliminate console window.
|
|
|
|
// Requires Rust 1.18.
|
2022-05-30 18:16:04 +08:00
|
|
|
//#![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() {
|
2022-10-12 11:36:19 +08:00
|
|
|
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")]
|
2022-01-13 16:07:18 +08:00
|
|
|
crate::common::check_software_update();
|
2022-10-12 11:36:19 +08:00
|
|
|
common::global_clean();
|
2021-03-29 15:59:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(any(target_os = "android", target_os = "ios", feature = "cli")))]
|
|
|
|
fn main() {
|
2022-10-12 11:36:19 +08:00
|
|
|
if !common::global_init() {
|
|
|
|
return;
|
|
|
|
}
|
2022-09-15 17:41:10 +08:00
|
|
|
if let Some(args) = crate::core_main::core_main().as_mut() {
|
|
|
|
ui::start(args);
|
2022-05-04 20:39:07 +08:00
|
|
|
}
|
2022-10-12 11:36:19 +08:00
|
|
|
common::global_clean();
|
2021-03-29 15:59:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "cli")]
|
|
|
|
fn main() {
|
2022-10-12 11:36:19 +08:00
|
|
|
if !common::global_init() {
|
|
|
|
return;
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
use clap::App;
|
2022-10-22 22:19:14 +08:00
|
|
|
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();
|
2022-10-22 22:19:14 +08:00
|
|
|
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();
|
2022-06-27 11:50:15 +08:00
|
|
|
let token = LocalConfig::get_option("access_token");
|
2022-10-22 22:19:14 +08:00
|
|
|
cli::start_one_port_forward(
|
|
|
|
options[0].clone(),
|
|
|
|
port,
|
|
|
|
remote_host,
|
|
|
|
remote_port,
|
|
|
|
key,
|
|
|
|
token,
|
|
|
|
);
|
2021-03-29 15:59:14 +08:00
|
|
|
}
|
2022-10-12 11:36:19 +08:00
|
|
|
common::global_clean();
|
2022-10-22 22:19:14 +08:00
|
|
|
}
|