| 1614 | } |
| 1615 | |
| 1616 | PROXY_DECLARE(int) ap_proxy_connection_reusable(proxy_conn_rec *conn) |
| 1617 | { |
| 1618 | proxy_worker *worker = conn->worker; |
| 1619 | |
| 1620 | return !(conn->close || worker->s->disablereuse); |
| 1621 | } |
| 1622 | |
| 1623 | static proxy_conn_rec *connection_make(apr_pool_t *p, proxy_worker *worker) |
| 1624 | { |
no outgoing calls
no test coverage detected