View | Details | Raw Unified | Return to bug 57781
Collapse All | Expand All

(-)a/support/ab.c (-3 / +2 lines)
Lines 701-707 static void ssl_proceed_handshake(struct connection *c) Link Here
701
701
702
static void write_request(struct connection * c)
702
static void write_request(struct connection * c)
703
{
703
{
704
    if (started >= requests) {
704
    if (started > requests) {
705
        return;
705
        return;
706
    }
706
    }
707
707
Lines 758-764 static void write_request(struct connection * c) Link Here
758
    } while (c->rwrite);
758
    } while (c->rwrite);
759
759
760
    c->endwrite = lasttime = apr_time_now();
760
    c->endwrite = lasttime = apr_time_now();
761
    started++;
762
    set_conn_state(c, STATE_READ);
761
    set_conn_state(c, STATE_READ);
763
}
762
}
764
763
Lines 1223-1228 static void start_connect(struct connection * c) Link Here
1223
1222
1224
    if (!(started < requests))
1223
    if (!(started < requests))
1225
    return;
1224
    return;
1225
    started++;
1226
1226
1227
    c->read = 0;
1227
    c->read = 0;
1228
    c->bread = 0;
1228
    c->bread = 0;
1229
- 

Return to bug 57781