| 116 | } |
| 117 | |
| 118 | int |
| 119 | QHttpConnectionPrivate::headerValue(http_parser*, const char* at, size_t length) { |
| 120 | if ( ilastRequest == nullptr ) |
| 121 | return 0; |
| 122 | |
| 123 | itempHeaderValue.append(at, length); |
| 124 | return 0; |
| 125 | } |
| 126 | |
| 127 | int |
| 128 | QHttpConnectionPrivate::headersComplete(http_parser* parser) { |
nothing calls this directly
no outgoing calls
no test coverage detected