| 31 | static DbgCtl dbg_ctl_xform{"xdebug_transform"}; |
| 32 | |
| 33 | static std::string |
| 34 | getPreBody(TSHttpTxn txn) |
| 35 | { |
| 36 | std::stringstream output; |
| 37 | output << "{'xDebugProbeAt' : '" << Hostname << "',\n 'captured':["; |
| 38 | print_request_headers(txn, output); |
| 39 | output << "\n ]\n}"; |
| 40 | output << MultipartBoundary; |
| 41 | return output.str(); |
| 42 | } |
| 43 | |
| 44 | static std::string |
| 45 | getPostBody(TSHttpTxn txn) |
no test coverage detected