From e6bc75951b8536bad8f6f4fed28e422f10e41b64 Mon Sep 17 00:00:00 2001 From: Datong Sun Date: Sun, 19 Sep 2021 01:43:08 -0700 Subject: [PATCH] style(phantun) fixed name and author info --- phantun/src/bin/client.rs | 4 ++-- phantun/src/bin/server.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/phantun/src/bin/client.rs b/phantun/src/bin/client.rs index 85a9539..ffd92e8 100644 --- a/phantun/src/bin/client.rs +++ b/phantun/src/bin/client.rs @@ -29,9 +29,9 @@ fn new_udp_reuseport(addr: SocketAddrV4) -> UdpSocket { async fn main() { pretty_env_logger::init(); - let matches = App::new("Phantom Client") + let matches = App::new("Phantun Client") .version("1.0") - .author("Dndx") + .author("dndx@GitHub") .arg( Arg::with_name("local") .short("l") diff --git a/phantun/src/bin/server.rs b/phantun/src/bin/server.rs index f713e88..bdd6d85 100644 --- a/phantun/src/bin/server.rs +++ b/phantun/src/bin/server.rs @@ -12,9 +12,9 @@ const UDP_TTL: Duration = Duration::from_secs(180); async fn main() { pretty_env_logger::init(); - let matches = App::new("Phantom Server") + let matches = App::new("Phantun Server") .version("1.0") - .author("Dndx") + .author("dndx@GitHub") .arg( Arg::with_name("local") .short("l")