quick-file-transfer 0.10.2

Transfer files quickly, safely, and painlessly between hosts on a local network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::config::util::*;

use super::ServiceTypeArgs;

#[derive(Debug, Args, Clone)]
#[command(flatten_help = true)]
pub struct MdnsDiscoverArgs {
    #[command(flatten)]
    pub service_type: ServiceTypeArgs,
    /// How long in ms to attempt to discover services before shutdown
    #[arg(long, default_value_t = 1000)]
    pub timeout_ms: u64,
}