about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-10-09 03:05:53 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-10-09 03:05:53 +0000
commitdfb2b0d37236561ce3367ef6253d5283634d6306 (patch)
treee1baa1ea562c6b9cae9babe9d5904b12da68fc02 /Completion
parent56e7d07643753014f51a2f1a521e238adadeb20f (diff)
downloadzsh-dfb2b0d37236561ce3367ef6253d5283634d6306.tar.gz
zsh-dfb2b0d37236561ce3367ef6253d5283634d6306.tar.xz
zsh-dfb2b0d37236561ce3367ef6253d5283634d6306.zip
Merge new completions onto 4.2 branch.
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_tcptraceroute22
-rw-r--r--Completion/Unix/Command/_tracepath5
2 files changed, 27 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_tcptraceroute b/Completion/Unix/Command/_tcptraceroute
new file mode 100644
index 000000000..7c03837a1
--- /dev/null
+++ b/Completion/Unix/Command/_tcptraceroute
@@ -0,0 +1,22 @@
+#compdef tcptraceroute
+
+_arguments \
+  '-n[no reverse lookups]' \
+  '-N[always reverse lookup]' \
+  '-f:first ttl:' \
+  '-m:maximum ttl:' \
+  '-p:local tcp port:_ports' \
+  '-s:source address:_hosts' \
+  '-i:interface for outgoing packets:_net_interfaces' \
+  '-q:number of probes to each hop:' \
+  '-w:timeout in seconds:' \
+  '-S[set TCP SYN flag]' \
+  '-A[set TCP ACK flag]' \
+  '-E[send ECN SYN packets]' \
+  '-t:IP TOS:' \
+  '-F[set IP don'"'"'t fragment bit]' \
+  '-l:total packet length:' \
+  '-d[enable debugging]' \
+  ':destination:_hosts' \
+  ':port:_ports' \
+  ':length:'
diff --git a/Completion/Unix/Command/_tracepath b/Completion/Unix/Command/_tracepath
new file mode 100644
index 000000000..eb49e567d
--- /dev/null
+++ b/Completion/Unix/Command/_tracepath
@@ -0,0 +1,5 @@
+#compdef tracepath tracepath6
+
+_arguments \
+  ':destination:_hosts' \
+  ':port:_ports'