From: Joe Orton Date: Wed, 12 Oct 2005 11:04:18 +0000 (+0000) Subject: * support/ab.c (test): Increment count of started requests when a X-Git-Tag: 2.3.0~2885 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99b60bff39c7aa6afafe4889395d170d8e4bc8f5;p=apache * 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 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@314844 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/ab.c b/support/ab.c index 50c15476cf..b8c2d4192c 100644 --- a/support/ab.c +++ b/support/ab.c @@ -1681,6 +1681,7 @@ static void test(void) } else { c->state = STATE_CONNECTED; + started++; #ifdef USE_SSL if (c->ssl) ssl_proceed_handshake(c);