| 156 | } |
| 157 | |
| 158 | void |
| 159 | log_headers(TSHttpTxn /* txn ATS_UNUSED */, TSMBuffer bufp, TSMLoc hdr_loc, char const *type_msg) |
| 160 | { |
| 161 | if (dbg_ctl_hdrs.on()) { |
| 162 | std::stringstream output; |
| 163 | print_headers(bufp, hdr_loc, output); |
| 164 | Dbg(dbg_ctl_hdrs, "\n=============\n %s headers are... \n %s", type_msg, output.str().c_str()); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | print_request_headers(TSHttpTxn txn, std::stringstream &output) |
no test coverage detected