| 46 | } |
| 47 | |
| 48 | void |
| 49 | QHttpResponse::end(const QByteArray &data) { |
| 50 | Q_D(QHttpResponse); |
| 51 | |
| 52 | if ( d->endPacket(data) ) |
| 53 | emit done(!d->ikeepAlive); |
| 54 | } |
| 55 | |
| 56 | QHttpConnection* |
| 57 | QHttpResponse::connection() const { |
nothing calls this directly
no outgoing calls
no test coverage detected