diff options
| author | ache <ache@ache.one> | 2026-08-16 22:01:58 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-08-16 22:01:58 +0200 |
| commit | 0620be9bab315f5f30cb5120ae56ff3d50d3775c (patch) | |
| tree | aa41e5e5392bf721d4c5f9be79d7ac928c8ae45e /src/args.rs | |
| parent | Don't count NotYetReceived packet as lost (diff) | |
Rename remainder line to status line
Diffstat (limited to 'src/args.rs')
| -rw-r--r-- | src/args.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/args.rs b/src/args.rs index 6fdca59..fe74f5e 100644 --- a/src/args.rs +++ b/src/args.rs @@ -33,9 +33,9 @@ pub struct Args { #[arg(short = 'l', long = "legende", action = ArgAction::SetTrue)] pub legende: bool, - /// Print the remainder line - #[arg(short = 'r', long = "remainder", action = ArgAction::SetTrue)] - pub remainder: bool, + /// Print the status line, the given target and the IP the ping is send to. + #[arg(long = "status", action = ArgAction::SetTrue)] + pub status: bool, /// Default target, if none is specified #[arg(long = "default-target", value_name = "default_target")] |