//////////////////////////////////////////////////////////////////////////
| 60 | |
| 61 | /////////////////////////////////////////////////////////////////////////////// |
| 62 | QByteArray |
| 63 | QHttpResponsePrivate::makeTitle() { |
| 64 | |
| 65 | QString title = QString("HTTP/%1 %2 %3\r\n") |
| 66 | .arg(iversion) |
| 67 | .arg(istatus) |
| 68 | .arg(Stringify::toString(istatus)); |
| 69 | |
| 70 | return title.toLatin1(); |
| 71 | } |
| 72 | |
| 73 | void |
| 74 | QHttpResponsePrivate::prepareHeadersToWrite() { |
nothing calls this directly
no outgoing calls
no test coverage detected