diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2025-10-30 15:26:10 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2025-10-30 15:26:10 +0900 |
| commit | 7f461a9a40cf9938c833ecdbe0562820562ce8ec (patch) | |
| tree | b5379b62497a0dbb14ea8031cace60d6081cc1f7 | |
| parent | Merge pull request #1165 from zsh-users/add-util-linux (diff) | |
| download | zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.tar zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.tar.gz zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.tar.bz2 zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.tar.lz zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.tar.xz zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.tar.zst zsh-completions-7f461a9a40cf9938c833ecdbe0562820562ce8ec.zip | |
update networkQuality completion
| -rw-r--r-- | src/_networkQuality | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/_networkQuality b/src/_networkQuality index a9a9276..136edd0 100644 --- a/src/_networkQuality +++ b/src/_networkQuality @@ -24,7 +24,7 @@ # Description # ----------- # -# Completion script for networkQuality on macOS +# Completion script for networkQuality on macOS 26 # # ------------------------------------------------------------------------------ # Authors @@ -35,13 +35,21 @@ # ------------------------------------------------------------------------------ _arguments \ + '-b[Show Bonjour advertised networkQuality servers]' \ + '-B[Run against specified Bonjour instance]:name' \ '-C[Use custom configuration URL or path]:url_or_path' \ + '-f[Force usage of a specific protocol selection]:option:(h1 h2 h3 L4S noL4S)' \ '-I[Bind test to interface]:interface:_net_interfaces' \ + '-M[Maximum runtime in seconds]:seconds' \ '-r[Connect to host or IP]:host' \ - '-c[Produce computer-readable output]' \ + '-S[Create a networkQuality server-instance running locally on the specified port]:port' \ + '-c[Produce computer-readable output]:file:_files' \ + '-d[Do not run a download test(implies -s)]' \ '-h[Show help]' \ '-k[Disable verification of the server identity via TLS]' \ + '-p[Use iCloud Private Relay]' \ '-s[Run tests sequentially instead of parallel upload/download]' \ + '-u[Do not run an upload test(implies -s)]' \ '-v[Verbose output]' # Local Variables: |
