You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/10/12 13:04:24 UTC

svn commit: r314844 - /httpd/httpd/trunk/support/ab.c

Author: jorton
Date: Wed Oct 12 04:04:18 2005
New Revision: 314844

URL: http://svn.apache.org/viewcvs?rev=314844&view=rev
Log:
* support/ab.c (test): Increment count of started requests when a
non-blocking connect completes; avoids case where more requests are
made than intended.

PR: 36966

Modified:
    httpd/httpd/trunk/support/ab.c

Modified: httpd/httpd/trunk/support/ab.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/support/ab.c?rev=314844&r1=314843&r2=314844&view=diff
==============================================================================
--- httpd/httpd/trunk/support/ab.c (original)
+++ httpd/httpd/trunk/support/ab.c Wed Oct 12 04:04:18 2005
@@ -1681,6 +1681,7 @@
                     }
                     else {
                         c->state = STATE_CONNECTED;
+                        started++;
 #ifdef USE_SSL
                         if (c->ssl)
                             ssl_proceed_handshake(c);