]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bugzilla #361: client -T opion was not implemented
authorhno <>
Thu, 13 Jun 2002 14:41:01 +0000 (14:41 +0000)
committerhno <>
Thu, 13 Jun 2002 14:41:01 +0000 (14:41 +0000)
src/client.cc

index e860047e9f5bd1a058ef5352ff7baacd45fd2917..537b3d68c847d2ca64564b5c7ada87149e010db7 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client.cc,v 1.94 2001/10/17 20:25:01 hno Exp $
+ * $Id: client.cc,v 1.95 2002/06/13 08:41:01 hno Exp $
  *
  * DEBUG: section 0     WWW Client
  * AUTHOR: Harvest Derived
@@ -119,7 +119,7 @@ main(int argc, char *argv[])
        strcpy(url, argv[argc - 1]);
        if (url[0] == '-')
            usage(argv[0]);
-       while ((c = getopt(argc, argv, "ah:l:P:i:km:p:rsvt:g:p:I:H:?")) != -1)
+       while ((c = getopt(argc, argv, "ah:l:P:i:km:p:rsvt:g:p:I:H:T:?")) != -1)
            switch (c) {
            case 'a':
                opt_noaccept = 1;
@@ -176,6 +176,9 @@ main(int argc, char *argv[])
                        *t = '\r', *(t + 1) = '\n';
                }
                break;
+           case 'T*:
+               io_timeout = atoi(optarg);
+               break;
            case 'v':
                /* undocumented: may increase verb-level by giving more -v's */
                opt_verbose++;