| 577 | } |
| 578 | |
| 579 | ts::HttpRequest |
| 580 | ts::HttpTxn::preq_hdr() |
| 581 | { |
| 582 | TSMBuffer buff; |
| 583 | TSMLoc loc; |
| 584 | if (_txn != nullptr && TS_SUCCESS == TSHttpTxnServerReqGet(_txn, &buff, &loc)) { |
| 585 | return {buff, loc}; |
| 586 | } |
| 587 | return {}; |
| 588 | } |
| 589 | |
| 590 | ts::HttpResponse |
| 591 | ts::HttpTxn::ursp_hdr() |
no test coverage detected