Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: use _bind_addresses



Now R. Ramkumar's patch to make things use 22811.

Index: Completion/Unix/Command/_bittorrent
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_bittorrent,v
retrieving revision 1.2
diff -u -r1.2 _bittorrent
--- Completion/Unix/Command/_bittorrent	30 Sep 2006 21:46:07 -0000	1.2
+++ Completion/Unix/Command/_bittorrent	3 Oct 2006 16:20:52 -0000
@@ -24,7 +24,7 @@
       '(--responsefile)--responsefile+[specify file for server response]:file:_files -g "*"'\
       "--url+[specify URL of torrent file]:URL:_urls"\
       '(-i --ip)'{-i+,--ip+}'[specify ip address to report as]:ip address'\
-      "--bind+[specify ip to bind to instead of default]:ip:"\
+      "--bind+[specify ip to bind to instead of default]:ip:_bind_addresses"\
       "--minport+[specify minimum port to listen to]:port:"\
       "--maxport+[specify maximum port to listen to]:port:"\
       "--saveas+[specify file to save to]:file:_files -/"\
@@ -83,7 +83,7 @@
     _arguments -s -S \
       "--port+[specify port to listen on]:port number:" \
       "--dfile+[specify file to store recent downloader info]:file:_files" \
-      "--bind+[specify ip to bind to]:bind address:" \
+      "--bind+[specify ip to bind to]:bind address:_bind_addresses" \
       "--socket_timeout+[specify timeout for closing connections]:timeout (s):"\
       "--save_dfile_interval+[specify interval between saving dfile]:time (s):"\
       "--timeout_downloaders_interval+[timeout for expiring downloaders]:time (s):" \
Index: Completion/Unix/Command/_rsync
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_rsync,v
retrieving revision 1.33
diff -u -r1.33 _rsync
--- Completion/Unix/Command/_rsync	30 May 2006 18:32:33 -0000	1.33
+++ Completion/Unix/Command/_rsync	3 Oct 2006 16:20:53 -0000
@@ -94,7 +94,7 @@
   {--no-v,--no-verbose}'[turn off --verbose]' \
   '--bwlimit=[limit I/O bandwidth]:KBytes per second' \
   '--port=[specify alternate port number]:port:(873)' \
-  '--address=[bind to the specified address]:address:_hosts' \
+  '--address=[bind to the specified address]:bind address:_bind_addresses' \
   '(-T --temp-dir)'{-T,--temp-dir=}'[create temporary files in specified directory]:directory:_directories' \
   '--sockopts=[specify custom TCP options]' \
   '(-4 -6 --ipv4 --ipv6)'{-4,--ipv4}'[prefer IPv4]' \
Index: Completion/Unix/Command/_ssh
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_ssh,v
retrieving revision 1.28
diff -u -r1.28 _ssh
--- Completion/Unix/Command/_ssh	25 Dec 2005 01:02:24 -0000	1.28
+++ Completion/Unix/Command/_ssh	3 Oct 2006 16:20:53 -0000
@@ -54,7 +54,7 @@
     _arguments -C -s \
       '(-A)-a[disable forwarding of authentication agent connection]' \
       '(-a)-A[enables forwarding of the authentication agent connection]' \
-      '(-P)-b+[specify interface to transmit on]:bind address' \
+      '(-P)-b+[specify interface to transmit on]:bind address:_bind_addresses' \
       '-D+[specify a dynamic port forwarding]:port' \
       '-e+[set escape character]:escape character (or `none'"'"'):' \
       '(-n)-f[go to background]' \
Index: Completion/Unix/Command/_wget
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_wget,v
retrieving revision 1.11
diff -u -r1.11 _wget
--- Completion/Unix/Command/_wget	24 Jun 2005 14:49:04 -0000	1.11
+++ Completion/Unix/Command/_wget	3 Oct 2006 16:20:53 -0000
@@ -35,7 +35,7 @@
   '(--proxy -Y --no-proxy)'{--proxy=,-Y+}'[explicitly turn on proxy]' \
   '(--proxy -Y --no-proxy)--no-proxy[explicitly turn off proxy]' \
   '(--quota -Q)'{--quota=,-Q+}'[set retrieval quota]:number' \
-  '--bind-address=:address to bind to (hostname or IP):_hosts' \
+  '--bind-address=[specify address to bind to (hostname or IP)]:bind address:_bind_addresses' \
   '--limit-rate=[specify limit to download rate]:download rate limit' \
   '--no-dns-cache[disable caching DNS lookups]' \
   '--restrict-file-names=[restrict chars in file names to ones OS allows]:OS:->restrict' \



Messages sorted by: Reverse Date, Date, Thread, Author