| 313 | } |
| 314 | |
| 315 | void HttpClient::decreaseThreadCountAndMayDeleteThis() |
| 316 | { |
| 317 | --_threadCount; |
| 318 | if (0 == _threadCount) |
| 319 | { |
| 320 | delete this; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | void HttpClient::setTimeoutForConnect(int value) |
| 325 | { |
no outgoing calls
no test coverage detected