| 182 | } |
| 183 | |
| 184 | void |
| 185 | data(const TSIOBufferReader r, const int64_t l) |
| 186 | { |
| 187 | length += l; |
| 188 | if (dbg_ctl.on()) { |
| 189 | std::string buffer; |
| 190 | const uint64_t length = read(r, buffer, l); |
| 191 | response += buffer; |
| 192 | Dbg(dbg_ctl, "Receiving response chunk \"%s\" of %" PRIu64 " bytes", buffer.c_str(), length); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | void |
| 197 | done() |
no test coverage detected