You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1999/10/27 09:12:49 UTC

cvs commit: apache-1.3/src/support ab.c

rse         99/10/27 00:12:46

  Modified:    src      CHANGES
               src/support ab.c
  Log:
  Made sure ApacheBench (ab) performs no more requests than
  specified on command line (option -n).
  
  Submitted by: Jim Cox <jc...@superlink.net>
  Reviewed by: Ralf S. Engelschall
  PR: 4839
  
  Revision  Changes    Path
  1.1438    +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1437
  retrieving revision 1.1438
  diff -u -r1.1437 -r1.1438
  --- CHANGES	1999/10/13 02:38:18	1.1437
  +++ CHANGES	1999/10/27 07:12:40	1.1438
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.10
   
  +  *) Made sure ApacheBench (ab) performs no more requests than 
  +     specified on command line (option -n).
  +     [Jim Cox <jc...@superlink.net>] PR#4839
  +
     *) Support DSOs properly on 32-bit HP-UX 11.0
        [Dilip Khandekar <di...@cup.hp.com>]
   
  
  
  
  1.34      +2 -1      apache-1.3/src/support/ab.c
  
  Index: ab.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/support/ab.c,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- ab.c	1999/09/29 21:14:47	1.33
  +++ ab.c	1999/10/27 07:12:44	1.34
  @@ -536,7 +536,8 @@
       }
   
       /* connected first time */
  -    write_request(c);
  +    c->state = STATE_CONNECTING;
  +    FD_SET(c->fd, &writebits);
   }
   
   /* --------------------------------------------------------- */
  
  
  

Re: cvs commit: apache-1.3/src/support ab.c

Posted by Tony Finch <do...@dotat.at>.
Martin Kraemer <Ma...@mch.sni.de> wrote:
>
>Maybe we should add a "-V" switch to print out ab's $Date$ or
>$Revision$ info -- currently, version numbers are only incremented
>ad hoc (and very seldom). Each change should be visible somehow
>_after_ the program was compiled.

IMO the $Id$ or $Header$ strings of every file should be embedded in
the binary; whether they are available by a command line option or by
running ident is less important.

Tony.
-- 
the dot at person

Re: cvs commit: apache-1.3/src/support ab.c

Posted by Martin Kraemer <Ma...@mch.sni.de>.
> On 27 Oct 1999 rse@hyperreal.org wrote:
> > rse         99/10/27 00:12:46
> >   Made sure ApacheBench (ab) performs no more requests than
> >   specified on command line (option -n).
> >   
> >   Submitted by: Jim Cox <jc...@superlink.net>

Maybe we should add a "-V" switch to print out ab's $Date$ or
$Revision$ info -- currently, version numbers are only incremented
ad hoc (and very seldom). Each change should be visible somehow
_after_ the program was compiled.

    Martin
-- 
<Ma...@MchP.Siemens.De>             |    Fujitsu Siemens
Fon: +49-89-636-46021, FAX: +49-89-636-41143 | 81730  Munich,  Germany

Re: cvs commit: apache-1.3/src/support ab.c

Posted by Brian Behlendorf <br...@apache.org>.
On 27 Oct 1999 rse@hyperreal.org wrote:
> rse         99/10/27 00:12:46
> 
>   Modified:    src      CHANGES
>                src/support ab.c
>   Log:
>   Made sure ApacheBench (ab) performs no more requests than
>   specified on command line (option -n).
>   
>   Submitted by: Jim Cox <jc...@superlink.net>
>   Reviewed by: Ralf S. Engelschall
>   PR: 4839

Thanks, Ralf!

	Brian