* Improve ping impl to bring parity to app lib impl * Fix issue with new impl * fix labrinth compile * wip: why do servers not provide server info.. * Fix ping impl overriding port * fix theseus_gui * remove unneeded recursion lmit
51 lines
1.1 KiB
Rust
51 lines
1.1 KiB
Rust
use anyhow::Result;
|
|
use structopt::StructOpt;
|
|
|
|
use async_minecraft_ping::ConnectionConfig;
|
|
|
|
#[derive(Debug, StructOpt)]
|
|
#[structopt(name = "example")]
|
|
struct Args {
|
|
/// Server to connect to
|
|
#[structopt()]
|
|
address: String,
|
|
|
|
/// Port to connect to
|
|
#[structopt(short = "p", long = "port")]
|
|
port: Option<u16>,
|
|
|
|
/// Enable SRV record lookup (requires 'srv' feature)
|
|
#[cfg(feature = "srv")]
|
|
#[structopt(long = "srv")]
|
|
srv_lookup: bool,
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
let args = Args::from_args();
|
|
|
|
let mut config = ConnectionConfig::build(args.address);
|
|
if let Some(port) = args.port {
|
|
config = config.with_port(port);
|
|
}
|
|
#[cfg(feature = "srv")]
|
|
if args.srv_lookup {
|
|
config = config.with_srv_lookup();
|
|
}
|
|
|
|
let connection = config.connect().await?;
|
|
|
|
let connection = connection.status().await?;
|
|
|
|
if let (Some(online), Some(max)) = (
|
|
connection.status.players.online,
|
|
connection.status.players.max,
|
|
) {
|
|
println!("{online} of {max} player(s) online");
|
|
}
|
|
|
|
connection.ping(42).await?;
|
|
|
|
Ok(())
|
|
}
|