| 42 | } |
| 43 | |
| 44 | static std::string |
| 45 | getPostBody(TSHttpTxn txn) |
| 46 | { |
| 47 | std::stringstream output; |
| 48 | output << MultipartBoundary; |
| 49 | output << "{'xDebugProbeAt' : '" << Hostname << "',\n 'captured':["; |
| 50 | print_response_headers(txn, output); |
| 51 | output << "\n ]\n}"; |
| 52 | return output.str(); |
| 53 | } |
| 54 | |
| 55 | static void |
| 56 | writePostBody(TSHttpTxn txn, BodyBuilder *data) |
no test coverage detected