| 43 | |
| 44 | |
| 45 | HTTPClientSession::HTTPClientSession(): |
| 46 | _port(HTTPSession::HTTP_PORT), |
| 47 | _proxyConfig(_globalProxyConfig), |
| 48 | _keepAliveTimeout(DEFAULT_KEEP_ALIVE_TIMEOUT, 0), |
| 49 | _reconnect(false), |
| 50 | _mustReconnect(false), |
| 51 | _expectResponseBody(false), |
| 52 | _responseReceived(false) |
| 53 | { |
| 54 | _proxySessionFactory.registerProtocol("http", new HTTPSessionInstantiator); |
| 55 | } |
| 56 | |
| 57 | |
| 58 | HTTPClientSession::HTTPClientSession(const StreamSocket& socket): |
nothing calls this directly
no test coverage detected