use clap::Parser; use std::{net, path}; use url::Url; #[derive(Parser, Clone, Debug)] pub struct Config { /// Listen for UDP packets on the given address. #[arg(long, default_value = "[::]:0")] pub bind: net::SocketAddr, /// Advertise this frame rate in the catalog (informational) // TODO auto-detect this from the input when not provided #[arg(long, default_value = "24")] pub fps: u8, /// Advertise this bit rate in the catalog (informational) // TODO auto-detect this from the input when not provided #[arg(long, default_value = "1500000")] pub bitrate: u32, /// Connect to the given URL starting with https:// #[arg(value_parser = moq_url)] pub url: Url, /// Use the TLS root CA at this path, encoded as PEM. /// /// This value can be provided multiple times for multiple roots. /// If this is empty, system roots will be used instead #[arg(long)] pub tls_root: Vec, /// Danger: Disable TLS certificate verification. /// /// Fine for local development, but should be used in caution in production. #[arg(long)] pub tls_disable_verify: bool, } fn moq_url(s: &str) -> Result { let url = Url::try_from(s).map_err(|e| e.to_string())?; // Make sure the scheme is moq if url.scheme() != "https" { return Err("url scheme must be https:// for WebTransport".to_string()); } Ok(url) }